Skip to main content
GET
/
v1
/
users
/
me
Get current user
curl --request GET \
  --url https://api.rootly.com/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1157",
    "type": "users",
    "attributes": {
      "name": "Josiah Morissette",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Josiah",
      "last_name": "Morissette",
      "full_name": "Josiah Morissette",
      "full_name_with_team": "[Satterfield-Cummerata] Josiah Morissette",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-13T14:10:25.331-08:00",
      "created_at": "2026-02-13T14:10:24.963-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "478095e0-4b15-4743-ae1d-e42e0639e780",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "cb5855ec-6481-4e3a-991f-4b86be469926",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "06162c55-e660-4dac-9b19-44bfe7ab7242",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "f589aff6-0b09-4d55-bda3-fab72cabe845",
            "type": "user_notification_rules"
          },
          {
            "id": "70d3ed1d-5f1c-4908-9ffc-50e8545732b3",
            "type": "user_notification_rules"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Response

user found

data
object
required