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": "567",
"type": "users",
"attributes": {
"name": "Shaun Ankunding",
"email": "maria@beatty-west.example",
"phone": null,
"phone_2": null,
"first_name": "Shaun",
"last_name": "Ankunding",
"full_name": "Shaun Ankunding",
"full_name_with_team": "[Schumm-Schmidt] Shaun Ankunding",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-11-21T14:35:12.552-08:00",
"created_at": "2025-11-21T14:35:12.147-08:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "28364917-0111-43c6-86cc-d8910812ef95",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "ea6f2776-d03a-425b-a48c-eabc83c44862",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "0e34110a-e818-4202-a282-d3d7b7e74919",
"type": "on_call_roles"
}
},
"teams": {
"data": []
},
"schedules": {
"data": []
},
"notification_rules": {
"data": [
{
"id": "9b99eaa2-1e03-4cdb-a167-94ee10890aed",
"type": "user_notification_rules"
},
{
"id": "d5410fa4-ecb6-488c-af9a-bab09082e34a",
"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": "567",
"type": "users",
"attributes": {
"name": "Shaun Ankunding",
"email": "maria@beatty-west.example",
"phone": null,
"phone_2": null,
"first_name": "Shaun",
"last_name": "Ankunding",
"full_name": "Shaun Ankunding",
"full_name_with_team": "[Schumm-Schmidt] Shaun Ankunding",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-11-21T14:35:12.552-08:00",
"created_at": "2025-11-21T14:35:12.147-08:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "28364917-0111-43c6-86cc-d8910812ef95",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "ea6f2776-d03a-425b-a48c-eabc83c44862",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "0e34110a-e818-4202-a282-d3d7b7e74919",
"type": "on_call_roles"
}
},
"teams": {
"data": []
},
"schedules": {
"data": []
},
"notification_rules": {
"data": [
{
"id": "9b99eaa2-1e03-4cdb-a167-94ee10890aed",
"type": "user_notification_rules"
},
{
"id": "d5410fa4-ecb6-488c-af9a-bab09082e34a",
"type": "user_notification_rules"
}
]
}
}
}
}