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": "Marlon Jacobson",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Marlon",
      "last_name": "Jacobson",
      "full_name": "Marlon Jacobson",
      "full_name_with_team": "[White-Kirlin] Marlon Jacobson",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-03T23:29:45.069-08:00",
      "created_at": "2026-02-03T23:29:44.782-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "d2cd23bd-a3b0-4223-849b-610bea0355c7",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "4acfdbb2-83c4-45f0-afb2-6142775ffea3",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "d9da494e-db3f-4d71-8d5e-0187d45fd567",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "7677b89a-5d2c-4929-ae3f-1a7da25c7399",
            "type": "user_notification_rules"
          },
          {
            "id": "18af9e26-edaa-408a-ab58-cd01c7ae0bff",
            "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