Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
user found
Get current user
curl --request GET \
--url https://api.rootly.com/v1/users/me \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "552",
"type": "users",
"attributes": {
"name": "Carter Weissnat",
"email": "devon@volkman-brown.test",
"phone": null,
"phone_2": null,
"first_name": "Carter",
"last_name": "Weissnat",
"full_name": "Carter Weissnat",
"full_name_with_team": "[Herman, Cremin and Grady] Carter Weissnat",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-10-22T08:48:50.785-07:00",
"created_at": "2025-10-22T08:48:50.351-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "ed8095fd-706b-4edd-8e68-233b840512bf",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "ac6b60de-11e5-4603-9737-a4c27f918894",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "213a8e6a-e886-4ac1-83df-811154c6337f",
"type": "on_call_roles"
}
},
"teams": {
"data": []
},
"schedules": {
"data": []
},
"notification_rules": {
"data": [
{
"id": "be97009f-77c5-4c7a-93fa-d6fb55b71ba1",
"type": "user_notification_rules"
},
{
"id": "9a4f8ec0-9f9c-4cf1-ac6f-fc85dd2f4cfc",
"type": "user_notification_rules"
}
]
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
user found
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/users/me \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "552",
"type": "users",
"attributes": {
"name": "Carter Weissnat",
"email": "devon@volkman-brown.test",
"phone": null,
"phone_2": null,
"first_name": "Carter",
"last_name": "Weissnat",
"full_name": "Carter Weissnat",
"full_name_with_team": "[Herman, Cremin and Grady] Carter Weissnat",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-10-22T08:48:50.785-07:00",
"created_at": "2025-10-22T08:48:50.351-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "ed8095fd-706b-4edd-8e68-233b840512bf",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "ac6b60de-11e5-4603-9737-a4c27f918894",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "213a8e6a-e886-4ac1-83df-811154c6337f",
"type": "on_call_roles"
}
},
"teams": {
"data": []
},
"schedules": {
"data": []
},
"notification_rules": {
"data": [
{
"id": "be97009f-77c5-4c7a-93fa-d6fb55b71ba1",
"type": "user_notification_rules"
},
{
"id": "9a4f8ec0-9f9c-4cf1-ac6f-fc85dd2f4cfc",
"type": "user_notification_rules"
}
]
}
}
}
}