Get current user
curl --request GET \
--url https://api.rootly.com/v1/users/me \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "499",
"type": "users",
"attributes": {
"name": "Toney Beier",
"email": "natalia_crona@gislason.example",
"phone": null,
"phone_2": null,
"first_name": "Toney",
"last_name": "Beier",
"full_name": "Toney Beier",
"full_name_with_team": "[Dietrich-Grant] Toney Beier",
"slack_id": null,
"time_zone": "UTC",
"updated_at": "2025-08-01T13:31:22.331-07:00",
"created_at": "2025-08-01T13:31:18.285-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "73af8971-5f32-4b59-b022-5cbf6cd03d8b",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "e88f9d1f-4c38-42b8-a8c9-53ae17ffcf6c",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "2759eded-07ae-4e4b-9717-0076323cfa47",
"type": "on_call_roles"
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/users/me \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "499",
"type": "users",
"attributes": {
"name": "Toney Beier",
"email": "natalia_crona@gislason.example",
"phone": null,
"phone_2": null,
"first_name": "Toney",
"last_name": "Beier",
"full_name": "Toney Beier",
"full_name_with_team": "[Dietrich-Grant] Toney Beier",
"slack_id": null,
"time_zone": "UTC",
"updated_at": "2025-08-01T13:31:22.331-07:00",
"created_at": "2025-08-01T13:31:18.285-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "73af8971-5f32-4b59-b022-5cbf6cd03d8b",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "e88f9d1f-4c38-42b8-a8c9-53ae17ffcf6c",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "2759eded-07ae-4e4b-9717-0076323cfa47",
"type": "on_call_roles"
}
}
}
}
}