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": "567",
    "type": "users",
    "attributes": {
      "name": "Johnathan Mayer",
      "email": "hortencia.wuckert@rice-jacobi.example",
      "phone": null,
      "phone_2": null,
      "first_name": "Johnathan",
      "last_name": "Mayer",
      "full_name": "Johnathan Mayer",
      "full_name_with_team": "[Reynolds, Fisher and Jacobi] Johnathan Mayer",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2025-11-27T00:13:31.394-08:00",
      "created_at": "2025-11-27T00:13:30.949-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "6f4093ce-dca7-4d6f-bfad-1ca67afac2dd",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "198dbf2d-9794-431b-9eef-d33c04d4b7c6",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "f1b40244-121a-421f-ae60-660fa5060ffc",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "40a40471-720b-4d87-b56a-53ceb8048499",
            "type": "user_notification_rules"
          },
          {
            "id": "2e024e97-0dc6-4f9b-83c7-7767bdd13281",
            "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