GET
/
v1
/
email_addresses
/
{id}
Show user email address
curl --request GET \
  --url https://api.rootly.com/v1/email_addresses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "d73f1a2b-ad42-48bc-9d51-dd95e51a03d6",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 488,
      "email": "joaquin@predovic.example",
      "primary": false,
      "verified_at": null,
      "created_at": "2025-07-29T13:46:51.064-07:00",
      "updated_at": "2025-07-29T13:46:51.064-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.