This API endpoint is used to delete a gig from the database.
Endpoint #
The Voomerr Delete Gig endpoint is POST https://admin.voomerr.com/api/delete_gig.php
Request Parameters #
Parameter | Required | Description |
---|---|---|
gig_id | Yes | the unique identifier of the gig to be deleted. |
Example Request #
bash
POST https://admin.voomerr.com/api/delete_gig.php
{
"gig_id": "123456"
}
Example Response #
json
{
"success": true,
"message": "Gig deleted successfully."
}
Error Response #
json
{
"success": false,
"message": "Failed to delete gig."
}