Skip to main content

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

id
string
required
The GUID of the event to delete.

Response fields

status
boolean
required
Indicates whether the request succeeded.
message
string
Human-readable result message.
data
object
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"
  }
}

Build docs developers (and LLMs) love