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": "fed7c46a-03e9-4f0a-882b-393277ac2b6d",
    "type": "user_email_addresses",
    "attributes": {
      "user_id": 504,
      "email": "elina_stark@morissette.test",
      "primary": false,
      "verified_at": null,
      "created_at": "2025-09-08T13:52:41.596-07:00",
      "updated_at": "2025-09-08T13:52:41.659-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.