DELETE
/
v1
/
email_addresses
/
{id}
curl --request DELETE \
  --url https://api.rootly.com/v1/email_addresses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "1f29b5a2-b2ad-4960-9f38-c5fb924e3a02",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 475,
      "email": "despina@wolf.example",
      "primary": false,
      "created_at": "2025-05-29T17:49:30.295-07:00",
      "updated_at": "2025-05-29T17:49:30.467-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.