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": "Rolland Conn",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Rolland",
      "last_name": "Conn",
      "full_name": "Rolland Conn",
      "full_name_with_team": "[Hoeger, Bode and Tillman] Rolland Conn",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-16T02:11:20.247-08:00",
      "created_at": "2026-02-16T02:11:20.008-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "34843285-ac43-4556-b62f-3f5f9bf85500",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "c1c41d88-b517-44ba-9baf-a330c7b0a682",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "1113fb9a-8164-46a5-8cee-104cdd02c3ab",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "36ffa92c-c248-4232-84f7-0e1be566225a",
            "type": "user_notification_rules"
          },
          {
            "id": "896ac71f-a367-4068-84cf-a5ca23d85ffe",
            "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