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

# Atualizar coluna do kanban



## OpenAPI

````yaml https://api.juridiq.com.br/openapi.json patch /task-board/update-column/{id}
openapi: 3.1.0
info:
  title: Juridiq Server API (interno)
  description: Documentação técnica **interna** da API Juridiq Server
  version: 1.0.0
servers:
  - url: http://localhost:3001
    description: Development server
  - url: https://api.juridiq.com.br
    description: Production server
security:
  - bearerAuth: []
paths:
  /task-board/update-column/{id}:
    patch:
      tags:
        - Task Board
      summary: Atualizar coluna do kanban
      operationId: updateTaskBoardColumn
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: id
          required: true
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                hexColor:
                  type: string
                isArchived:
                  type: boolean
                isDoneColumn:
                  type: boolean
                archivesItemsOnEntry:
                  type: boolean
                isLastColumn:
                  type: boolean
                nextColumnId:
                  type: string
                  format: uuid
                isFirstColumn:
                  type: boolean
                taskKanbanBoardId:
                  type: string
                  format: uuid
                typeSheetStatus:
                  type: string
                  enum:
                    - PENDING
                    - IN_PROGRESS
                    - COMPLETED
                    - CANCELLED
              additionalProperties: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema: {}
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  translateMessage:
                    type: string
                required:
                  - message
                  - statusCode
                  - translateMessage
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  translateMessage:
                    type: string
                required:
                  - message
                  - statusCode
                  - translateMessage
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  translateMessage:
                    type: string
                required:
                  - message
                  - statusCode
                  - translateMessage
                additionalProperties: false
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Insira o token JWT no formato: Bearer {token}'

````