Retrieves a specific user phone number
curl --request GET \
--url https://api.rootly.com/v1/phone_numbers/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "d679b245-21f4-4c49-aae9-58674006cf27",
"type": "user_phone_numbers",
"attributes": {
"user_id": 497,
"phone": "+19727659986 x2312",
"primary": true,
"created_at": "2025-08-19T10:26:05.077-07:00",
"updated_at": "2025-08-19T10:26:05.077-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": "d679b245-21f4-4c49-aae9-58674006cf27",
"type": "user_phone_numbers",
"attributes": {
"user_id": 497,
"phone": "+19727659986 x2312",
"primary": true,
"created_at": "2025-08-19T10:26:05.077-07:00",
"updated_at": "2025-08-19T10:26:05.077-07:00"
}
}
}