GET
/
v1
/
users
/
me
Get current user
curl --request GET \
  --url https://api.rootly.com/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "498",
    "type": "users",
    "attributes": {
      "name": "Lore Schinner",
      "email": "anette_jones@hyatt.test",
      "phone": null,
      "phone_2": null,
      "first_name": "Lore",
      "last_name": "Schinner",
      "full_name": "Lore Schinner",
      "full_name_with_team": "[Lesch, Parker and Stamm] Lore Schinner",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-07-12T00:20:29.663-07:00",
      "created_at": "2025-07-12T00:20:23.796-07:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "3d657781-80dd-4c57-a6d6-bcc298b0b7ba",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "d1a91baa-7f8f-4cd8-965e-178352d32dfd",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "4501a060-5231-43b0-91e0-145b637aeda7",
          "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.