Get current user
curl --request GET \
--url https://api.rootly.com/v1/users/me \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "517",
"type": "users",
"attributes": {
"name": "Hung Boehm",
"email": "rosemarie.lang@bergnaum-fay.test",
"phone": null,
"phone_2": null,
"first_name": "Hung",
"last_name": "Boehm",
"full_name": "Hung Boehm",
"full_name_with_team": "[Nikolaus, Auer and Cartwright] Hung Boehm",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-09-11T06:46:16.545-07:00",
"created_at": "2025-09-11T06:46:16.072-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "f6a44fee-f114-4645-99f1-fab1d2cb7de3",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "8b21ad1f-815e-47da-9a38-df5906357caf",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "dbe44e48-385a-443b-b536-efdabaee1b22",
"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": "517",
"type": "users",
"attributes": {
"name": "Hung Boehm",
"email": "rosemarie.lang@bergnaum-fay.test",
"phone": null,
"phone_2": null,
"first_name": "Hung",
"last_name": "Boehm",
"full_name": "Hung Boehm",
"full_name_with_team": "[Nikolaus, Auer and Cartwright] Hung Boehm",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-09-11T06:46:16.545-07:00",
"created_at": "2025-09-11T06:46:16.072-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "f6a44fee-f114-4645-99f1-fab1d2cb7de3",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "8b21ad1f-815e-47da-9a38-df5906357caf",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "dbe44e48-385a-443b-b536-efdabaee1b22",
"type": "on_call_roles"
}
}
}
}
}