DELETE
/
v1
/
email_addresses
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/email_addresses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "d5e7189a-31ce-451b-9228-1efc7d266c06",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 485,
      "email": "jami@greenfelder.test",
      "primary": false,
      "created_at": "2025-06-19T02:44:42.201-07:00",
      "updated_at": "2025-06-19T02:44:42.390-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 deleted

The response is of type object.