GET
/
v1
/
users
/
{user_id}
/
email_addresses
curl --request GET \
  --url https://api.rootly.com/v1/users/{user_id}/email_addresses \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "59238cd6-1dee-4668-8f02-857e11b31a39",
      "type": "user_email_addresses",
      "attributes": {
        "user_id": 485,
        "email": "boyce.hyatt@becker.test",
        "primary": true,
        "created_at": "2025-06-21T12:03:44.414-07:00",
        "updated_at": "2025-06-21T12:03:44.414-07:00"
      }
    },
    {
      "id": "67476848-505c-401c-8537-40a0cf3446c2",
      "type": "user_email_addresses",
      "attributes": {
        "user_id": 485,
        "email": "aaron@turcotte.test",
        "primary": false,
        "created_at": "2025-06-21T12:03:46.580-07:00",
        "updated_at": "2025-06-21T12:03:46.580-07:00"
      }
    },
    {
      "id": "db492f8c-bdfd-49d2-95a3-3c980ba490f5",
      "type": "user_email_addresses",
      "attributes": {
        "user_id": 485,
        "email": "chin_hills@kemmer.example",
        "primary": false,
        "created_at": "2025-06-21T12:03:46.596-07:00",
        "updated_at": "2025-06-21T12:03:46.596-07:00"
      }
    }
  ],
  "links": {
    "self": "http://www.example.com/v1/users/485/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "first": "http://www.example.com/v1/users/485/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "prev": null,
    "next": null,
    "last": "http://www.example.com/v1/users/485/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50"
  },
  "meta": {
    "current_page": 1,
    "next_page": null,
    "prev_page": null,
    "total_count": 3,
    "total_pages": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_id
string
required

Response

200
application/vnd.api+json

user_email_addresses found

The response is of type object.