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

# Bulk Update Tasks

> Perform bulk operations on multiple tasks



## OpenAPI

````yaml https://cloud.kaneo.app/api/openapi patch /task/bulk
openapi: 3.0.3
info:
  title: Kaneo API
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
  version: 1.0.0
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
tags:
  - name: Organization Management
paths:
  /task/bulk:
    patch:
      tags:
        - Tasks
      summary: Bulk Update Tasks
      description: Perform bulk operations on multiple tasks
      operationId: bulkUpdateTasks
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                taskIds:
                  type: array
                  items:
                    type: string
                  minItems: 1
                operation:
                  enum:
                    - updateStatus
                    - updatePriority
                    - updateAssignee
                    - delete
                    - addLabel
                    - removeLabel
                    - updateDueDate
                  type: string
                value:
                  type: string
                  nullable: true
              required:
                - taskIds
                - operation
      responses:
        '200':
          description: Bulk operation completed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  updatedCount:
                    type: number
                required:
                  - success
                  - updatedCount
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Bearer token authentication

````