Retrieves a specific user phone number
curl --request GET \
--url https://api.rootly.com/v1/phone_numbers/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "0cc80a8e-4ece-4038-8b83-10533c90b324",
"type": "user_phone_numbers",
"attributes": {
"user_id": 513,
"phone": "+17147128160",
"primary": true,
"created_at": "2025-09-08T12:56:27.864-07:00",
"updated_at": "2025-09-08T12:56:27.864-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": "0cc80a8e-4ece-4038-8b83-10533c90b324",
"type": "user_phone_numbers",
"attributes": {
"user_id": 513,
"phone": "+17147128160",
"primary": true,
"created_at": "2025-09-08T12:56:27.864-07:00",
"updated_at": "2025-09-08T12:56:27.864-07:00"
}
}
}