DELETE
/
admin
/
delete
/
donors
curl --request DELETE \
  --url https://api.helpyousponsor.com/v1/admin/delete/donors \
  --header 'Authorization: Bearer <token>'
{
  "message": "Successfully deleted donors."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

donor_ids
string
required

Comma-separated list of entity IDs to delete

Example:

"1,2,3"

Response

200
application/json
Successful operation
message
string
Example:

"Successfully deleted donors."