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": "1059",
    "type": "users",
    "attributes": {
      "name": "Jack Considine",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Jack",
      "last_name": "Considine",
      "full_name": "Jack Considine",
      "full_name_with_team": "[Krajcik LLC] Jack Considine",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-06T12:08:22.630-08:00",
      "created_at": "2026-02-06T12:08:22.299-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "ef0f02e8-79b3-4d34-a703-c31cfd2553aa",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "fb1fb432-8848-4b5c-a288-e6aaffd2315c",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "6ff8d898-1f34-432a-9a29-3431cea4e792",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "4188cd72-9b14-4d4d-933c-89d3250d99eb",
            "type": "user_notification_rules"
          },
          {
            "id": "dfe4a211-7380-4270-8c8a-6b0f2555aede",
            "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