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

# Bulk Update Status

> Update status for multiple contents at once.

Bulk status update operation useful for batch processing workflows.

Args:
    content_ids: List of content IDs to update
    new_status: New status value (new, processing, completed, failed)
    status_message: Optional status message
    
Returns:
    Summary of update results
    
Example:
    PATCH /contents/bulk/update-status
    Body:
    {
        "content_ids": ["con_123", "con_456"],
        "new_status": "completed",
        "status_message": "Processing finished successfully"
    }



## OpenAPI

````yaml api-reference/openapi.json patch /api/v1/contents/bulk/update-status
openapi: 3.1.0
info:
  title: FastAPI app
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/contents/bulk/update-status:
    patch:
      tags:
        - Contents
      summary: Bulk Update Status
      description: |-
        Update status for multiple contents at once.

        Bulk status update operation useful for batch processing workflows.

        Args:
            content_ids: List of content IDs to update
            new_status: New status value (new, processing, completed, failed)
            status_message: Optional status message
            
        Returns:
            Summary of update results
            
        Example:
            PATCH /contents/bulk/update-status
            Body:
            {
                "content_ids": ["con_123", "con_456"],
                "new_status": "completed",
                "status_message": "Processing finished successfully"
            }
      operationId: bulk_update_status_api_v1_contents_bulk_update_status_patch
      parameters:
        - name: X-Workspace-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: The workspace ID
            title: X-Workspace-Id
          description: The workspace ID
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Body_bulk_update_status_api_v1_contents_bulk_update_status_patch
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - DualAuthScheme: []
components:
  schemas:
    Body_bulk_update_status_api_v1_contents_bulk_update_status_patch:
      properties:
        content_ids:
          items:
            type: string
          type: array
          title: Content Ids
          description: List of content IDs
        new_status:
          type: string
          title: New Status
          description: New status to apply
        status_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Status Message
          description: Optional status message
      type: object
      required:
        - content_ids
        - new_status
      title: Body_bulk_update_status_api_v1_contents_bulk_update_status_patch
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    DualAuthScheme:
      type: http
      scheme: bearer

````