Skip to main content
DELETE
/
v1
/
event-types
/
{id}
cURL
curl --request DELETE \
  --url http://sandbox.mintlify.com/v1/event-types/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": null
}
Delete an event type by its ID. You can only delete event types that belong to you or are accessible through your team memberships.
This action is permanent and cannot be undone. Deleting an event type may affect existing bookings or scheduled events.

Path Parameters

id
integer
required
The unique identifier of the event type to delete.

Response

success
boolean
required
Indicates whether the request was successful. Always true for successful responses.
data
null
Always null for successful delete operations.

Example Response

{
  "success": true,
  "data": null
}

Error Response

{
  "success": false,
  "error": {
    "code": "NOT_FOUND",
    "message": "Event type not found."
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
integer<int64>
required

ID of event type to delete

Response

Event type deleted

success
boolean
required

Indicates whether the request was successful

Example:

true

data
object
required

The response data. Can be an object, array, or null