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

# Delete Flash Listing

> Deletes a flash listing



## OpenAPI

````yaml DELETE /flash/{id}/delete
openapi: 3.1.0
info:
  title: Tatu API
  description: API documentation for Tatu's booking and artist management system
  version: 1.0.0
servers:
  - url: http://localhost:3000/api
    description: Development server
security: []
paths:
  /flash/{id}/delete:
    delete:
      summary: Delete Flash Listing
      description: Deletes a flash listing
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The ID of the flash listing
      responses:
        '200':
          description: Flash listing deleted successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                properties:
                  success:
                    type: boolean
                    description: Whether the operation was successful

````