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": "517",
"type": "users",
"attributes": {
"name": "Genevie Paucek",
"email": "lauri@mertz.test",
"phone": null,
"phone_2": null,
"first_name": "Genevie",
"last_name": "Paucek",
"full_name": "Genevie Paucek",
"full_name_with_team": "[Feest, Nader and Littel] Genevie Paucek",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-09-16T17:18:53.377-07:00",
"created_at": "2025-09-16T17:18:52.955-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "85da2d03-f8d6-4143-9d81-953c230833b6",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "49a0aca9-9b97-49a8-bc2d-d6682172f17d",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "7fdad491-8963-4139-9dcb-6dbf3938df7f",
"type": "on_call_roles"
}
}
}
}
}
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": "517",
"type": "users",
"attributes": {
"name": "Genevie Paucek",
"email": "lauri@mertz.test",
"phone": null,
"phone_2": null,
"first_name": "Genevie",
"last_name": "Paucek",
"full_name": "Genevie Paucek",
"full_name_with_team": "[Feest, Nader and Littel] Genevie Paucek",
"slack_id": null,
"time_zone": "Etc/UTC",
"updated_at": "2025-09-16T17:18:53.377-07:00",
"created_at": "2025-09-16T17:18:52.955-07:00"
},
"relationships": {
"email_addresses": {
"data": [
{
"id": "85da2d03-f8d6-4143-9d81-953c230833b6",
"type": "user_email_addresses"
}
]
},
"phone_numbers": {
"data": []
},
"devices": {
"data": []
},
"role": {
"data": {
"id": "49a0aca9-9b97-49a8-bc2d-d6682172f17d",
"type": "roles"
}
},
"on_call_role": {
"data": {
"id": "7fdad491-8963-4139-9dcb-6dbf3938df7f",
"type": "on_call_roles"
}
}
}
}
}