DELETE
/
v1
/
phone_numbers
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/phone_numbers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "5b0393e3-81f3-40e6-9578-2b0d4f517f4e",
    "type": "user_phone_numbers",
    "attributes": {
      "user_id": 482,
      "phone": "+12029037076 x1452",
      "primary": true,
      "created_at": "2025-05-29T17:49:41.294-07:00",
      "updated_at": "2025-05-29T17:49:41.474-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

user_phone_number deleted

The response is of type object.