Skip to main content
GET
/
v1
/
users
/
me
Get current user
curl --request GET \
  --url https://api.rootly.com/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "543",
    "type": "users",
    "attributes": {
      "name": "Lisabeth Kiehn",
      "email": "ezequiel@graham-zboncak.test",
      "phone": null,
      "phone_2": null,
      "first_name": "Lisabeth",
      "last_name": "Kiehn",
      "full_name": "Lisabeth Kiehn",
      "full_name_with_team": "[Heller, Wiza and Lemke] Lisabeth Kiehn",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2025-10-07T10:13:31.395-07:00",
      "created_at": "2025-10-07T10:13:30.930-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "09266f52-cc21-4831-905e-07ba49b26381",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "666ce29b-6721-4afc-928f-34ac309b4d98",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "042669ee-1897-42da-b6f4-5cac3a316a1e",
          "type": "on_call_roles"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

user found

data
object
required
I