GET
/
v1
/
users
/
me
curl --request GET \
  --url https://api.rootly.com/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "498",
    "type": "users",
    "attributes": {
      "name": "Rogelio Moen",
      "email": "yelena@prosacco-nikolaus.test",
      "phone": null,
      "phone_2": null,
      "first_name": "Rogelio",
      "last_name": "Moen",
      "full_name": "Rogelio Moen",
      "full_name_with_team": "[Berge and Sons] Rogelio Moen",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-07-09T07:49:25.717-07:00",
      "created_at": "2025-07-09T07:49:20.507-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "d62784bd-1d74-4152-a851-a28f5d992eac",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "8ae3215e-aa06-4a9d-b66e-d94a96f40426",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "bd1a8494-fa84-46bb-b624-69365e2089c7",
          "type": "on_call_roles"
        }
      }
    }
  }
}

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.