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": "1083",
    "type": "users",
    "attributes": {
      "name": "Lewis Harber",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Lewis",
      "last_name": "Harber",
      "full_name": "Lewis Harber",
      "full_name_with_team": "[Maggio Group] Lewis Harber",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-11T03:31:13.481-08:00",
      "created_at": "2026-02-11T03:31:13.153-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "396694c2-c779-4b82-9d8e-dd0c5b0fb57e",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "9da4d5a4-25a3-410a-8165-a39293f114ee",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "c1f7b20c-8d92-4d4b-b047-5ac514d786f4",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "3e5593b1-736d-4f09-833c-0e1ad3d780ff",
            "type": "user_notification_rules"
          },
          {
            "id": "64f53956-599e-410e-a1a9-7425cf76125d",
            "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