Deleting an event is a permanent, irreversible operation. When this endpoint is called, the event record is removed from the database along with all of its associated participant memberships and administrator assignments. There is no soft-delete or recovery mechanism — once deleted, the event and its relationships cannot be restored.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/CristianRR94/springCommunity/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authorization header.
Path Parameters
The unique numeric database ID of the event to delete. This value is available as the
id field on any event listing or detail response.Response
On success, the server returns200 OK with an empty response body. No Content-Type header or JSON payload is included.
Error Responses
| Status | Description |
|---|---|
401 Unauthorized | The Authorization header is missing, the token has expired, or the token signature is invalid. The response body will contain an ErrorResponse with status, mensaje, and timestamp fields. |
404 Not Found | No event exists with the supplied id. The event may have already been deleted or the ID may be incorrect. |