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

# Bulk update applications

> Update up to 100 applications in one request. Each application update sets the target stage and numeric position.



## OpenAPI

````yaml /openapi-private.json put /applications/_bulk
openapi: 3.1.0
info:
  title: Spott API Reference
  version: '0.1'
servers:
  - url: https://api.gospott.com
security: []
tags: []
paths:
  /applications/_bulk:
    put:
      tags:
        - Applications
      summary: Bulk update applications
      description: >-
        Update up to 100 applications in one request. Each application update
        sets the target stage and numeric position.
      operationId: bulkUpdateApplications
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkUpdateApplicationsDto'
      responses:
        '204':
          description: Applications updated successfully
        '400':
          description: >-
            Bad request - invalid payload, duplicate application ids, duplicate
            positions, or incompatible target stage
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExceptionBaseDto'
        '401':
          description: Unauthorized - invalid or missing authentication
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExceptionBaseDto'
        '404':
          description: Application or stage not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExceptionBaseDto'
        '500':
          description: Error response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExceptionBaseDto'
      security:
        - x-api-key: []
components:
  schemas:
    BulkUpdateApplicationsDto:
      type: object
      properties:
        items:
          minItems: 1
          maxItems: 100
          type: array
          items:
            $ref: '#/components/schemas/BulkUpdateApplicationDto'
      required:
        - items
      id: PrivateBulkUpdateApplicationsDto
    ExceptionBaseDto:
      type: object
      properties:
        status:
          type: integer
          minimum: -9007199254740991
          maximum: 9007199254740991
        message:
          type: string
        requestId:
          type: string
      required:
        - status
        - message
        - requestId
      id: ExceptionBaseDto
    BulkUpdateApplicationDto:
      type: object
      properties:
        id:
          type: string
          minLength: 1
        stageId:
          type: string
          minLength: 1
        position:
          type: number
      required:
        - id
        - stageId
        - position
      id: PrivateBulkUpdateApplicationDto
  securitySchemes:
    x-api-key:
      type: apiKey
      name: x-api-key
      in: header
      description: >-
        API key for authentication. Get your API key from Settings → API Keys in
        your Spott dashboard.

````