GET
/
v1
/
email_addresses
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/email_addresses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "7d666c39-30eb-4731-a6c9-1085c877c372",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 487,
      "email": "lynette@heaney-smith.example",
      "primary": false,
      "created_at": "2025-07-09T08:36:46.714-07:00",
      "updated_at": "2025-07-09T08:36:46.714-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200
application/vnd.api+json

user_email_address found

The response is of type object.