GET
/
v1
/
users
/
me
curl --request GET \
  --url https://api.rootly.com/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "479",
    "type": "users",
    "attributes": {
      "name": "Hector Schoen",
      "email": "teena@lockman-hamill.test",
      "phone": null,
      "phone_2": null,
      "full_name": "Hector Schoen",
      "full_name_with_team": "[Torp-Langosh] Hector Schoen",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-05-08T00:26:00.401-07:00",
      "created_at": "2025-05-08T00:25:54.438-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "9fd57ec5-3c3b-45ba-8729-9135813758a7",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/vnd.api+json
user found

The response is of type object.