GET
/
v1
/
users
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/users/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "523",
    "type": "users",
    "attributes": {
      "name": "Sammie Lueilwitz",
      "email": "rene@schultz-schaden.test",
      "phone": null,
      "phone_2": null,
      "full_name": "Sammie Lueilwitz",
      "full_name_with_team": "[Smitham-Zboncak] Sammie Lueilwitz",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-03-26T23:26:03.671-07:00",
      "created_at": "2025-03-26T23:25:59.761-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "e825a3d2-2cd3-4394-9d09-39caeee325da",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      }
    }
  }
}

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

Response

200
application/vnd.api+json
user found
data
object
required