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": "1083",
    "type": "users",
    "attributes": {
      "name": "Candi Olson",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Candi",
      "last_name": "Olson",
      "full_name": "Candi Olson",
      "full_name_with_team": "[Predovic Inc] Candi Olson",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-07T16:51:32.149-08:00",
      "created_at": "2026-02-07T16:51:31.880-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "84ed962b-5d7c-4052-a249-d2ec42738ccf",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "61d30a39-db05-4e43-b88d-5f73bc4ed23b",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "25c25d7c-bccf-442e-8f76-a68b0f3bba56",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "6ed9a12f-3f54-4cf3-a005-8283bd613e23",
            "type": "user_notification_rules"
          },
          {
            "id": "7e6612a0-7d30-41c8-86a7-c531a75c75e0",
            "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