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": "1057",
    "type": "users",
    "attributes": {
      "name": "Saundra Schulist",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Saundra",
      "last_name": "Schulist",
      "full_name": "Saundra Schulist",
      "full_name_with_team": "[O'Conner and Sons] Saundra Schulist",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-01-29T05:31:14.765-08:00",
      "created_at": "2026-01-29T05:31:14.470-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "3ae3360f-3a97-4867-a7b0-57123238dbbe",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "73cd46c0-3147-4115-94b3-aae2439f7acc",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "98881c46-c93c-44f3-8b81-0a3f8be5c4fd",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "98634f30-e3bf-4b63-920b-dfe9b17936ae",
            "type": "user_notification_rules"
          },
          {
            "id": "fbe4b8bf-730a-42d0-bfce-88f04ecf7324",
            "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