DELETE
/
v1
/
email_addresses
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/email_addresses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "ce13c73e-3d6d-4ac2-8f3f-5fd6beeb2461",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 485,
      "email": "pat.jacobs@wehner-dietrich.example",
      "primary": false,
      "created_at": "2025-06-20T12:04:27.999-07:00",
      "updated_at": "2025-06-20T12:04:28.128-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.