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": "Lucinda Leannon",
      "email": "orval@hegmann.test",
      "phone": null,
      "phone_2": null,
      "first_name": "Lucinda",
      "last_name": "Leannon",
      "full_name": "Lucinda Leannon",
      "full_name_with_team": "[Legros-Abshire] Lucinda Leannon",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-20T07:24:35.827-08:00",
      "created_at": "2026-02-20T07:24:35.438-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "b05e7a0c-973d-472d-be6c-f1525dad415a",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "170d1408-93d1-4a0d-9d6f-30598c1e0a18",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "0c75f749-5805-402b-9f41-5f71096dbfa8",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "362263ff-9464-49d6-8aa5-96991a9779fd",
            "type": "user_notification_rules"
          },
          {
            "id": "14e6982b-ce48-4808-97de-a53b80f9f49d",
            "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