Deletes a user phone number
curl --request DELETE \
--url https://api.rootly.com/v1/phone_numbers/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1e3ea095-b7e9-4f9d-bf54-ca3258a945c1",
"type": "user_phone_numbers",
"attributes": {
"user_id": 495,
"phone": "+15202341962 x5245",
"primary": true,
"created_at": "2025-07-30T02:15:27.049-07:00",
"updated_at": "2025-07-30T02:15:27.175-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": "1e3ea095-b7e9-4f9d-bf54-ca3258a945c1",
"type": "user_phone_numbers",
"attributes": {
"user_id": 495,
"phone": "+15202341962 x5245",
"primary": true,
"created_at": "2025-07-30T02:15:27.049-07:00",
"updated_at": "2025-07-30T02:15:27.175-07:00"
}
}
}