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": "616",
    "type": "users",
    "attributes": {
      "name": "Tyson Hintz",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Tyson",
      "last_name": "Hintz",
      "full_name": "Tyson Hintz",
      "full_name_with_team": "[Bayer, Kautzer and Bogan] Tyson Hintz",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2025-12-08T16:53:06.799-08:00",
      "created_at": "2025-12-08T16:53:06.199-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "292c1901-ef88-49ff-a5e7-48d5c126cda0",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "6670ad85-ae50-406e-bebd-d94b7bcef98c",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "5f63f35b-951b-4266-b707-09dea23fd08d",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "027f0c4e-414c-46cf-8e82-7f2dc7418e9c",
            "type": "user_notification_rules"
          },
          {
            "id": "b5daa2d6-b584-4e67-835c-dedca808b201",
            "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