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": "1157",
    "type": "users",
    "attributes": {
      "name": "Philip Leannon",
      "email": "buford_walker@ratke.example",
      "phone": null,
      "phone_2": null,
      "first_name": "Philip",
      "last_name": "Leannon",
      "full_name": "Philip Leannon",
      "full_name_with_team": "[Mayert LLC] Philip Leannon",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-20T18:01:48.731-08:00",
      "created_at": "2026-02-20T18:01:48.470-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "94be7995-2bac-44f3-8a95-878a63fb09d8",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "3501afea-32d8-44ec-b4eb-3cc597f51973",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "b44fbc36-1553-4657-bb7a-1d96d2d3612c",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "12ab5fea-e76e-4712-8ce8-eba41fdb62b3",
            "type": "user_notification_rules"
          },
          {
            "id": "a54c48f7-f790-4975-978a-16a871e69337",
            "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