> ## 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.

# Remove Flash Bookmark

> Removes a flash bookmark for the authenticated user



## OpenAPI

````yaml DELETE /flash/bookmarks/remove
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/bookmarks/remove:
    delete:
      summary: Remove Flash Bookmark
      description: Removes a flash bookmark for the authenticated user
      parameters:
        - name: flashId
          in: query
          required: true
          schema:
            type: string
          description: ID of the flash listing to remove bookmark for
      responses:
        '200':
          description: Bookmark removed successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                properties:
                  success:
                    type: boolean
                    description: Whether the operation was successful
        '400':
          description: Bad request - missing flash ID
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````