# Bulk delete draft events API to bulk delete draft events. Endpoint: POST /v2/events/bulk-delete Version: v2 Security: Bearer ## Request fields (application/json): - `deleteEventList` (array, required) List of events to be deleted. - `deleteEventList.id` (string, required) Unique identifier for the event. Example: "56789012" - `deleteEventList.type` (string) Type of an event Enum: "GENERIC", "PROGRAM", "PROGRAM_SESSION", "PROGRAM_TRIP" ## Response 200 fields (application/json): - `deleteEventResponses` (array, required) List of events delete response. - `deleteEventResponses.id` (string, required) Unique identifier for the event. Example: "56789012" - `deleteEventResponses.status` (string, required) Generic operation/execution status. Enum: "SUCCESS", "FAILED", "PARTIAL_SUCCESS" - `deleteEventResponses.message` (string) Details about success or failure reason. Example: "Deleted successfully" ## Response 400 fields (application/json): - `debugIdentifier` (string) Link to debug the error internally. - `errorMessages` (array) - `errorMessages.errorCode` (string) Error code to identify the specific errors. - `errorMessages.message` (string) Message containing details of error. - `errorMessages.errorParameters` (array) Error message parameters. - `errorMessages.errorParameters.name` (string) Parameter name - `errorMessages.errorParameters.value` (string) Parameter value - `errorMessages.errorDetail` (string) More details about the error. ## Response 401 fields (application/json): - `debugIdentifier` (string) Link to debug the error internally. - `errorMessages` (array) - `errorMessages.errorCode` (string) Error code to identify the specific errors. - `errorMessages.message` (string) Message containing details of error. - `errorMessages.errorParameters` (array) Error message parameters. - `errorMessages.errorParameters.name` (string) Parameter name - `errorMessages.errorParameters.value` (string) Parameter value - `errorMessages.errorDetail` (string) More details about the error. ## Response 403 fields (application/json): - `debugIdentifier` (string) Link to debug the error internally. - `errorMessages` (array) - `errorMessages.errorCode` (string) Error code to identify the specific errors. - `errorMessages.message` (string) Message containing details of error. - `errorMessages.errorParameters` (array) Error message parameters. - `errorMessages.errorParameters.name` (string) Parameter name - `errorMessages.errorParameters.value` (string) Parameter value - `errorMessages.errorDetail` (string) More details about the error.