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": "567",
    "type": "users",
    "attributes": {
      "name": "Laurence Abshire",
      "email": "inga_reilly@spencer-gusikowski.test",
      "phone": null,
      "phone_2": null,
      "first_name": "Laurence",
      "last_name": "Abshire",
      "full_name": "Laurence Abshire",
      "full_name_with_team": "[Goyette, O'Conner and Cruickshank] Laurence Abshire",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2025-11-24T17:31:04.163-08:00",
      "created_at": "2025-11-24T17:31:03.861-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "e4d56f48-12dd-4620-a618-a944730c95ed",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "ea69bec8-d6f3-4da0-858c-263006827edc",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "48b7f112-28d9-4cf5-94b1-f2be5e6d881b",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "1a924496-828e-47b3-bd1c-5147b1dd87a2",
            "type": "user_notification_rules"
          },
          {
            "id": "afac5970-eb76-4c06-b5fd-417519c26c3a",
            "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