Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
user_phone_number found
Retrieves a specific user phone number
curl --request GET \
--url https://api.rootly.com/v1/phone_numbers/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1ad4560a-c645-4149-b87e-d651d1830e91",
"type": "user_phone_numbers",
"attributes": {
"user_id": 548,
"phone": "+14132816315 x7167",
"primary": true,
"created_at": "2025-10-18T10:31:20.121-07:00",
"updated_at": "2025-10-18T10:31:20.121-07:00"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user_phone_number found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/phone_numbers/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1ad4560a-c645-4149-b87e-d651d1830e91",
"type": "user_phone_numbers",
"attributes": {
"user_id": 548,
"phone": "+14132816315 x7167",
"primary": true,
"created_at": "2025-10-18T10:31:20.121-07:00",
"updated_at": "2025-10-18T10:31:20.121-07:00"
}
}
}