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": "f0ef2ce6-f567-47cd-a3ea-669750165d26",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 488,
      "email": "cordie@romaguera.test",
      "primary": false,
      "verified_at": null,
      "created_at": "2025-07-30T02:15:17.801-07:00",
      "updated_at": "2025-07-30T02:15:17.904-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.