DELETE
/
v1
/
email_addresses
/
{id}
Delete user email address
curl --request DELETE \
  --url https://api.rootly.com/v1/email_addresses/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "0ac1b22c-b61c-4b2d-9b2b-1362ec96823a",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 487,
      "email": "dennis@kuhic.example",
      "primary": false,
      "created_at": "2025-07-09T12:10:05.570-07:00",
      "updated_at": "2025-07-09T12:10:05.735-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.