Retrieves a specific user phone number
curl --request GET \
--url https://api.rootly.com/v1/phone_numbers/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "716f1a5b-9fcf-4207-8ac0-75667e2ca351",
"type": "user_phone_numbers",
"attributes": {
"user_id": 495,
"phone": "+15867016219 x7304",
"primary": true,
"created_at": "2025-07-29T19:10:11.373-07:00",
"updated_at": "2025-07-29T19:10:11.373-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user_phone_number found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/phone_numbers/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "716f1a5b-9fcf-4207-8ac0-75667e2ca351",
"type": "user_phone_numbers",
"attributes": {
"user_id": 495,
"phone": "+15867016219 x7304",
"primary": true,
"created_at": "2025-07-29T19:10:11.373-07:00",
"updated_at": "2025-07-29T19:10:11.373-07:00"
}
}
}