GET
/
v1
/
users
/
me
curl --request GET \
  --url https://api.rootly.com/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "520",
    "type": "users",
    "attributes": {
      "name": "Ahmed Gutmann",
      "email": "bryant.konopelski@volkman-purdy.example",
      "phone": null,
      "phone_2": null,
      "full_name": "Ahmed Gutmann",
      "full_name_with_team": "[Kuphal LLC] Ahmed Gutmann",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-03-22T23:06:06.845-07:00",
      "created_at": "2025-03-22T23:06:02.512-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "ba908623-c8d7-4716-bef4-968e2a06e893",
            "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
data
object
required