Get current user
curl --request GET \
--url https://api.rootly.com/v1/users/me \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "501",
"type": "users",
"attributes": {
"name": "Luis Rodriguez",
"email": "margaretta_gulgowski@greenholt.test",
"phone": null,
"phone_2": null,
"first_name": "Luis",
"last_name": "Rodriguez",
"full_name": "Luis Rodriguez",
"full_name_with_team": "[Abshire, Bernier and Tillman] Luis Rodriguez",
"slack_id": null,
"time_zone": "UTC",
"updated_at": "2025-08-21T17:54:14.512-07:00",
"created_at": "2025-08-21T17:54:14.114-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "4eefa690-6fc1-4795-acff-8e122fef11c0",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "2d601be4-9463-441e-98e9-df06cbb96c2f",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "dfd4a681-ddd7-45f6-b459-cfe10387f5d3",
"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": "501",
"type": "users",
"attributes": {
"name": "Luis Rodriguez",
"email": "margaretta_gulgowski@greenholt.test",
"phone": null,
"phone_2": null,
"first_name": "Luis",
"last_name": "Rodriguez",
"full_name": "Luis Rodriguez",
"full_name_with_team": "[Abshire, Bernier and Tillman] Luis Rodriguez",
"slack_id": null,
"time_zone": "UTC",
"updated_at": "2025-08-21T17:54:14.512-07:00",
"created_at": "2025-08-21T17:54:14.114-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "4eefa690-6fc1-4795-acff-8e122fef11c0",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "2d601be4-9463-441e-98e9-df06cbb96c2f",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "dfd4a681-ddd7-45f6-b459-cfe10387f5d3",
"type": "on_call_roles"
}
}
}
}
}