GET
/
v1
/
users
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "498",
    "type": "users",
    "attributes": {
      "name": "Agustin Koepp",
      "email": "kathern_dicki@ullrich-batz.test",
      "phone": null,
      "phone_2": null,
      "first_name": "Agustin",
      "last_name": "Koepp",
      "full_name": "Agustin Koepp",
      "full_name_with_team": "[Kautzer-Mitchell] Agustin Koepp",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-07-05T07:49:37.768-07:00",
      "created_at": "2025-07-05T07:49:31.484-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "6f5ad74e-3159-4ae8-895b-6688fad379dd",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "13dea637-3c73-4b89-9921-006448ee1f8b",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "fc915c4b-680f-400e-921d-bca3e6132a35",
          "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.