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": "1087",
    "type": "users",
    "attributes": {
      "name": "Johnathan Hamill",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Johnathan",
      "last_name": "Hamill",
      "full_name": "Johnathan Hamill",
      "full_name_with_team": "[Krajcik, Lind and Kiehn] Johnathan Hamill",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-12T04:41:11.535-08:00",
      "created_at": "2026-02-12T04:41:11.299-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "2c8f24c7-51cd-48ce-b2ff-90263cac5fb8",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "3c861516-b841-4a1e-b8a1-85c3aa598b4a",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "421dfca6-a77b-4469-a1fe-8c0a3770e5b8",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "1dfe5a55-71f3-4f1f-b045-7ce32e116fe8",
            "type": "user_notification_rules"
          },
          {
            "id": "0cc6f31b-8897-4697-b629-893fd90fa33a",
            "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