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": "fd6d4be7-0090-4d45-b1a8-fe68720983b0",
      "type": "user_email_addresses",
      "attributes": {
        "user_id": 475,
        "email": "esteban@parisian.test",
        "primary": true,
        "created_at": "2025-05-29T17:49:24.817-07:00",
        "updated_at": "2025-05-29T17:49:24.817-07:00"
      }
    },
    {
      "id": "575a75e5-228a-4927-943f-b2cc73b8ced5",
      "type": "user_email_addresses",
      "attributes": {
        "user_id": 475,
        "email": "dwain@cremin-boehm.test",
        "primary": false,
        "created_at": "2025-05-29T17:49:28.259-07:00",
        "updated_at": "2025-05-29T17:49:28.259-07:00"
      }
    },
    {
      "id": "3a053c83-18dd-4a25-830d-0004580ed033",
      "type": "user_email_addresses",
      "attributes": {
        "user_id": 475,
        "email": "luana.powlowski@becker.example",
        "primary": false,
        "created_at": "2025-05-29T17:49:28.285-07:00",
        "updated_at": "2025-05-29T17:49:28.285-07:00"
      }
    }
  ],
  "links": {
    "self": "http://www.example.com/v1/users/475/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "first": "http://www.example.com/v1/users/475/email_addresses?page%5Bnumber%5D=1&page%5Bsize%5D=50",
    "prev": null,
    "next": null,
    "last": "http://www.example.com/v1/users/475/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.