Deletes a user phone number
curl --request DELETE \
--url https://api.rootly.com/v1/phone_numbers/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d15b20bf-cab0-4d99-a09c-adb01f4929be",
"type": "user_phone_numbers",
"attributes": {
"user_id": 513,
"phone": "+18475867182",
"primary": true,
"created_at": "2025-09-08T13:30:16.168-07:00",
"updated_at": "2025-09-08T13:30:16.256-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user_phone_number deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/phone_numbers/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d15b20bf-cab0-4d99-a09c-adb01f4929be",
"type": "user_phone_numbers",
"attributes": {
"user_id": 513,
"phone": "+18475867182",
"primary": true,
"created_at": "2025-09-08T13:30:16.168-07:00",
"updated_at": "2025-09-08T13:30:16.256-07:00"
}
}
}