> ## 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 Multiple Photos

> Removes multiple photos from an artist's gallery. Only artists can remove their own photos.



## OpenAPI

````yaml DELETE /gallery/remove-photos
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:
  /gallery/remove-photos:
    delete:
      summary: Remove Multiple Gallery Photos
      description: >-
        Removes multiple photos from an artist's gallery. Only artists can
        remove their own photos.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - photoIds
              properties:
                photoIds:
                  type: array
                  items:
                    type: string
                  description: Array of photo IDs to remove
      responses:
        '200':
          description: Photos removed successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                properties:
                  success:
                    type: boolean
                    description: Whether the photos were successfully removed
        '400':
          description: Bad request - invalid or empty photo IDs array
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden - user does not own one or more photos
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '405':
          description: Method not allowed - only DELETE is supported
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````