GET
/
v1
/
email_addresses
/
{id}
curl --request GET \
  --url https://api.rootly.com/v1/email_addresses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "373a365f-29fa-4ae5-b198-d197a4ff1114",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 485,
      "email": "vincent.emmerich@smith.test",
      "primary": false,
      "created_at": "2025-06-18T22:05:10.465-07:00",
      "updated_at": "2025-06-18T22:05:10.465-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.