GET
/
v1
/
phone_numbers
/
{id}
Show 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"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

200
application/vnd.api+json

user_phone_number found

The response is of type object.