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": "1087",
    "type": "users",
    "attributes": {
      "name": "Darnell Harber",
      "email": "[email protected]",
      "phone": null,
      "phone_2": null,
      "first_name": "Darnell",
      "last_name": "Harber",
      "full_name": "Darnell Harber",
      "full_name_with_team": "[Kihn, Terry and Feeney] Darnell Harber",
      "slack_id": null,
      "time_zone": "Etc/UTC",
      "updated_at": "2026-02-12T16:26:55.370-08:00",
      "created_at": "2026-02-12T16:26:55.102-08:00"
    },
    "relationships": {
      "email_addresses": {
        "data": [
          {
            "id": "4b81da8c-b759-42ff-bcb3-f61b7b8b0978",
            "type": "user_email_addresses"
          }
        ]
      },
      "phone_numbers": {
        "data": []
      },
      "devices": {
        "data": []
      },
      "role": {
        "data": {
          "id": "e57959d9-a216-4b59-a349-6185b73df3f6",
          "type": "roles"
        }
      },
      "on_call_role": {
        "data": {
          "id": "bbede733-df87-4e61-8a7a-3892d086cb57",
          "type": "on_call_roles"
        }
      },
      "teams": {
        "data": []
      },
      "schedules": {
        "data": []
      },
      "notification_rules": {
        "data": [
          {
            "id": "9aefc2f6-3452-405f-9fe2-7f4b50232954",
            "type": "user_notification_rules"
          },
          {
            "id": "36f1c985-befd-4005-8da6-844eeea76809",
            "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