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

# Mark Flash as Available

> Marks flash listings as available for booking



## OpenAPI

````yaml PUT /flash/mark-as-available
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/mark-as-available:
    put:
      summary: Mark Flash as Available
      description: Marks flash listings as available for booking
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - flashIds
              properties:
                flashIds:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Flash listings marked as available
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  updatedCount:
                    type: number

````