Retrieves a specific user by 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"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
comma separated if needed. eg: email_addresses,phone_numbers
email_addresses
, phone_numbers
, devices
, role
, on_call_role
user found
The response is of type object
.
Was this page helpful?
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"
}
}
}
}
}