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": "Derick Christiansen",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Derick",
      "last_name": "Christiansen",
      "full_name": "Derick Christiansen",
      "full_name_with_team": "[Franecki, Harvey and Heller] Derick Christiansen",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-13T18:10:48.899-08:00",
      "created_at": "2026-02-13T18:10:48.677-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "bf720ce6-f673-498d-b0b5-4acb3ec7407c",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "c4d9d437-adb3-4100-8301-40bde7b5374b",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "de8fc2c9-3d96-4721-8295-b46283d77b66",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "0eeff2da-e136-40a7-ade5-b904fc158124",
            "type": "user_notification_rules"
          },
          {
            "id": "6ef12db1-9809-4953-bf07-57f78d5332f9",
            "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