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": "846",
    "type": "users",
    "attributes": {
      "name": "Mitchel Douglas",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Mitchel",
      "last_name": "Douglas",
      "full_name": "Mitchel Douglas",
      "full_name_with_team": "[Greenfelder-Satterfield] Mitchel Douglas",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-01-08T03:48:35.590-08:00",
      "created_at": "2026-01-08T03:48:35.353-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "4c0ba1ef-b89e-4beb-85f8-9a637b5d16b1",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "5cc671c5-6b47-4e60-8965-6914eb03e9a6",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "a3c9f893-c3dd-4c28-9bd4-d78efe5991fd",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "8d6962a4-a5b8-4dab-adba-bd9d11776723",
            "type": "user_notification_rules"
          },
          {
            "id": "435367d8-f8c9-48dd-ae24-f203cab5bdf3",
            "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