DELETE /api/v2/event/delete
Permanently deletes an event and all associated data.
Authentication
Authorization: Bearer <your_api_key>
Endpoint
DELETE /api/v2/event/delete
Query Parameters
|
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
|
integer |
Yes |
The ID of the event to delete |
Response
JSON
{
"code": 200,
"data": { "status": "deleted" }
}
Error Responses
|
HTTP Code |
Condition |
Error Message |
|---|---|---|
|
400 |
|
|
|
403 |
Missing or invalid API key |
|
Example Request
Bash
curl -X DELETE "https://your-event-domain.com/api/v2/event/delete?event_id=123" \
-H "Authorization: Bearer your_api_key_here"
⚠️ This action is irreversible. All event data including participants, exhibitors, sessions, meetings, and floor plan records associated with the event will be permanently removed.