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": "Brianne Mertz",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Brianne",
      "last_name": "Mertz",
      "full_name": "Brianne Mertz",
      "full_name_with_team": "[Hickle-Hudson] Brianne Mertz",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-04T11:03:32.393-08:00",
      "created_at": "2026-02-04T11:03:32.125-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "c7066261-84e2-447f-aeba-828dfdbbd559",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "8163e588-a0fc-4ac9-9caa-874db1e5dd29",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "f4aef247-a5dd-4afa-8cff-ba6e917a11c3",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "f9cd6c5e-8512-425d-b4f6-a3867612cbdf",
            "type": "user_notification_rules"
          },
          {
            "id": "19690bab-1ebd-46f4-8f86-8734586b164c",
            "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