GET
/
v1
/
users
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "486",
    "type": "users",
    "attributes": {
      "name": "Billy Hodkiewicz",
      "email": "tyler@hagenes.test",
      "phone": null,
      "phone_2": null,
      "first_name": "Billy",
      "last_name": "Hodkiewicz",
      "full_name": "Billy Hodkiewicz",
      "full_name_with_team": "[Buckridge-Waelchi] Billy Hodkiewicz",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-05-29T17:49:49.692-07:00",
      "created_at": "2025-05-29T17:49:42.921-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "a1a45383-1d62-460f-9469-bdaa1594ad00",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "e5dcdd75-bc5e-4cf9-8214-53cd8f03b34c",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "d2543cc3-5f62-4932-91d4-089cdb92a20f",
          "type": "on_call_roles"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: email_addresses,phone_numbers

Available options:
email_addresses,
phone_numbers,
devices,
role,
on_call_role

Response

200
application/vnd.api+json

user found

The response is of type object.