This method is intended for deleting an existing subscriber in the project. Data is sent in application/json format.
HTTP Request
- URL:
https://sender-solutions.com/api/subscribers/delete-subscriber/ - HTTP Method: POST
- Content-Type:
application/json
Request Body (JSON)
{
"Subscriber": {
"Id": 23
}
} Example request using cURL
curl --location 'https://sender-solutions.com/api/subscribers/delete-subscriber/' \
--header 'Content-Type: application/json' \
--header 'Authorization: {{api-token}}' \
--data-raw '{
"Subscriber": {
"Id": 23
}
}'
Field Description
| Field | Type | Required | Description |
|---|---|---|---|
Subscriber.Id | number | Subscriber identifier |
Example of a successful response
{
"success": true
}