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": "Houston Moore",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Houston",
      "last_name": "Moore",
      "full_name": "Houston Moore",
      "full_name_with_team": "[Rolfson, Boyle and Bergnaum] Houston Moore",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-05T23:17:24.961-08:00",
      "created_at": "2026-02-05T23:17:24.575-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "0cc3b6d2-7e27-410c-b134-e46a17272529",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "8cb9e872-3509-4a20-bd32-14904222f687",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "411026d8-5a60-44cf-a814-5c8ebbded7c3",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "60842eda-cdd2-4cf0-ac05-4b09f6398fe8",
            "type": "user_notification_rules"
          },
          {
            "id": "37019385-694c-4c3d-83a3-50e200101b1e",
            "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