> ## Documentation Index
> Fetch the complete documentation index at: https://docs.novacal.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Event Type

> Delete a Novacal event type by ID and review the endpoint path, authentication requirements, and no-content success response.



## OpenAPI

````yaml DELETE /v1/event-types/{id}
openapi: 3.1.0
info:
  title: Events API
  description: Public API for managing event types
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.novacal.io
security:
  - bearerAuth: []
paths:
  /v1/event-types/{id}:
    delete:
      description: Deletes a single event type by ID
      parameters:
        - name: id
          in: path
          description: ID of event type to delete
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '204':
          description: Event type deleted successfully (no content)
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````