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": "Marcellus Mayert",
      "email": "merrill@wolf-botsford.example",
      "phone": null,
      "phone_2": null,
      "first_name": "Marcellus",
      "last_name": "Mayert",
      "full_name": "Marcellus Mayert",
      "full_name_with_team": "[Rodriguez-Hills] Marcellus Mayert",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-06-19T02:44:56.604-07:00",
      "created_at": "2025-06-19T02:44:52.054-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "084e362d-b343-4656-9563-f329bbc70cf3",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "aed4f7ef-2208-4b17-bab8-6f27b47ebecf",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "4e1ee8bd-0cd1-4f3d-891a-f5b8983ca4c6",
          "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.