DELETE /api/events/
Permanently deletes an event.
This action is irreversible. All associated attendances and comments will also be removed.
Requires a valid Bearer token. Allowed roles: USER, ADMIN, ORGANIZER.
Path parameters
The GUID of the event to delete.
Response fields
Indicates whether the request succeeded.
Human-readable result message.
The deleted event object.
curl --request DELETE \
--url 'https://api.meetpoint.com/api/events/a1b2c3d4-e5f6-7890-abcd-ef1234567890' \
--header 'Authorization: Bearer <token>'
{
"status": true,
"message": "Evento eliminado correctamente",
"data": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"title": "Summer Music Festival",
"organizerId": "user-abc123",
"organizerName": "Jane Doe",
"date": "2026-07-20T18:00:00Z"
}
}