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": "Yen Murray",
      "email": "mandi.leannon@lesch.example",
      "phone": null,
      "phone_2": null,
      "first_name": "Yen",
      "last_name": "Murray",
      "full_name": "Yen Murray",
      "full_name_with_team": "[Murazik Group] Yen Murray",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-19T08:01:39.564-08:00",
      "created_at": "2026-02-19T08:01:39.290-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "087f14bc-0dcf-4114-a579-0689ec0a31f8",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "07ed0037-51d7-4c9d-acb9-8892546caed9",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "eeae476a-75ae-4e6a-8570-7e09557abdac",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "de2b42e1-8fd2-4dee-b786-ccd3ae7ec0c5",
            "type": "user_notification_rules"
          },
          {
            "id": "9bd609cf-72e6-4707-b7f8-876f59c94824",
            "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