logo
EasyListing
Api reference/Subscriber

Delete

Remove Subscriber 🗑️

This endpoint allows you to remove a subscriber from your email list.

🔑 Authentication

Include your API key in the request header:

EL_API_KEY: YOUR_SECRET_API_KEY

Delete Endpoint ❌

URL: /delete/subscriber

HTTP Method: DELETE

Request Body 📥

The request body must contain the token of the subscriber to be removed. This is the only required field.

You get this token from the create endpoint success response (unSubToken).

Required Field:

  • token: required to identify the subscriber to be deleted.

Successful Response ✅

If the subscriber is successfully deleted, the response will look like this:

{
  "error": null,
  "message": "Subscriber deleted successfully",
  "ok": true
}

For further API details, check out the API Reference.

On this page