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": "1059",
    "type": "users",
    "attributes": {
      "name": "Lucinda Smitham",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Lucinda",
      "last_name": "Smitham",
      "full_name": "Lucinda Smitham",
      "full_name_with_team": "[Thiel, O'Hara and Hoppe] Lucinda Smitham",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-02T07:20:29.247-08:00",
      "created_at": "2026-02-02T07:20:28.937-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "ff5346d6-a84c-4384-9c1d-4715470fd475",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "99edb7ba-0d6a-49cf-8f67-36d8daeecaed",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "b71a4226-755b-4d02-9278-2e3a3119efa2",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "dbef721e-3d71-47c3-b004-08b32d46107d",
            "type": "user_notification_rules"
          },
          {
            "id": "5112ba6b-e8ba-4071-89f1-5ac4e8f3e8d8",
            "type": "user_notification_rules"
          }
        ]
      }
    }
  }
}

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