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": "Delbert Zemlak",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Delbert",
      "last_name": "Zemlak",
      "full_name": "Delbert Zemlak",
      "full_name_with_team": "[Casper Group] Delbert Zemlak",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-02T20:43:39.695-08:00",
      "created_at": "2026-02-02T20:43:39.399-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "f8f0d311-4ecb-4ade-b1d9-70bb0f72ef35",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "c359b14c-749a-4889-a7db-c6af35391a62",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "6dfb2fda-095f-4b03-881c-66f423209037",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "fe3909b6-30d3-4dab-ab7c-aa9c93b59a80",
            "type": "user_notification_rules"
          },
          {
            "id": "96bbc7f6-2d06-4588-82fa-4a046bd21f3c",
            "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