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": "1157",
    "type": "users",
    "attributes": {
      "name": "Darwin Kirlin",
      "email": "randolph_macgyver@wehner.test",
      "phone": null,
      "phone_2": null,
      "first_name": "Darwin",
      "last_name": "Kirlin",
      "full_name": "Darwin Kirlin",
      "full_name_with_team": "[Nicolas-Haley] Darwin Kirlin",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-21T14:35:32.204-08:00",
      "created_at": "2026-02-21T14:35:31.937-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "f10b29f9-5fef-44db-a28b-e6715af06ce3",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "07fa3bbd-a808-4298-acdb-5ca9cd77c8a5",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "37d1e13f-fd61-441c-9ab7-415471613fc7",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "c7ed59be-0b38-4985-a035-6ce0cde3c00b",
            "type": "user_notification_rules"
          },
          {
            "id": "f7046231-f46d-48b6-a8e8-eddfdaf4c359",
            "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