GET
/
v1
/
users
/
me
curl --request GET \
  --url https://api.rootly.com/v1/users/me \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{
  "data": {
    "id": "510",
    "type": "users",
    "attributes": {
      "name": "Forrest Fritsch",
      "email": "napoleon.pouros@greenholt.test",
      "phone": null,
      "phone_2": null,
      "full_name": "Forrest Fritsch",
      "full_name_with_team": "[Walker-Koelpin] Forrest Fritsch",
      "slack_id": null,
      "time_zone": "UTC",
      "updated_at": "2025-03-05T15:13:50.079-08:00",
      "created_at": "2025-03-05T15:13:46.433-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "94e3ef1d-af4b-41ec-ae1b-0ccf37bd538e",
            "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