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

# Delete Event

> Delete an existing event

Permanently delete an event and all associated venue proposals.

### Path Parameters

<ParamField path="eventId" type="string" required>
  The ID of the event to delete
</ParamField>


## OpenAPI

````yaml DELETE /events/{eventId}
openapi: 3.0.1
info:
  title: Nowadays API
  description: >-
    API documentation for managing events and venue proposals in the Nowadays
    system
  version: 1.0.0
servers:
  - url: https://nowadays.ai/api/northstar
security:
  - bearerAuth: []
paths:
  /events/{eventId}:
    delete:
      summary: Delete Event
      description: Delete an existing event
      parameters:
        - name: eventId
          in: path
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Event deleted successfully
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````