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": "618",
    "type": "users",
    "attributes": {
      "name": "Santiago Johnson",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Santiago",
      "last_name": "Johnson",
      "full_name": "Santiago Johnson",
      "full_name_with_team": "[Volkman-Glover] Santiago Johnson",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2025-12-11T17:15:06.334-08:00",
      "created_at": "2025-12-11T17:15:06.087-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "f3d266e5-722b-43e4-b249-0d5d138e13d2",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "d4faf189-e5f6-4d26-8194-49c4d9f73617",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "609f50f5-32ff-4155-8c62-f8457e3bfaeb",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "48cc0478-0879-4d91-8f2a-e28edd629437",
            "type": "user_notification_rules"
          },
          {
            "id": "959224c7-0184-4ab2-b599-2877ebb99274",
            "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