Skip to main content
DELETE
/
admin
/
donation
/
{donation_id}
Remove a donation
curl --request DELETE \
  --url https://api.helpyousponsor.com/v1/admin/donation/{donation_id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "Donation successfully deleted."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

donation_id
integer
required

ID of the donation to be deleted

Response

Donation successfully deleted.

message
string
Example:

"Donation successfully deleted."

I