logo
Events

Delete event

Delete an event by its unique ID.

DELETE
/events/{id}

Authorization

x-kommunity-api-key<token>

In: header

Path Parameters

idRequiredstring

Unique identifier for the event

Response Body

Event deleted successfully

successboolean
dataobject
export interface Response {
  success?: boolean;
  data?: {
    eventId?: string;
  };
}
 
curl -X DELETE "/api/v1/events/string" \
  -H "x-kommunity-api-key: <token>"
{
  "success": true,
  "data": {
    "eventId": "string"
  }
}