GET
/
v1
/
users
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "496",
    "type": "users",
    "attributes": {
      "name": "Wilfredo Ullrich",
      "email": "olive.reichel@shields.example",
      "phone": null,
      "phone_2": null,
      "first_name": "Wilfredo",
      "last_name": "Ullrich",
      "full_name": "Wilfredo Ullrich",
      "full_name_with_team": "[Trantow-Hansen] Wilfredo Ullrich",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-06-21T12:04:02.291-07:00",
      "created_at": "2025-06-21T12:03:58.070-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "5c7ab40a-fd94-4883-be2f-f2236359401c",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "17ddb159-faa2-4403-a009-7137bb7c7325",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "c1ecb1b8-71eb-4f10-9627-8c9b7a7284a4",
          "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.