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

# Reorder Gallery Photos

> Updates the order of photos in an artist's gallery



## OpenAPI

````yaml PUT /gallery/reorder
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/reorder:
    put:
      summary: Reorder Gallery Photos
      description: Updates the order of photos in an artist's gallery
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - photoUpdates
              properties:
                photoUpdates:
                  type: array
                  items:
                    type: object
                    properties:
                      id:
                        type: string
                      order:
                        type: number
      responses:
        '200':
          description: Photos reordered successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - success
                properties:
                  success:
                    type: boolean
                    description: Whether the operation was successful

````