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

# Listar colunas do kanban de tarefas

> Retorna as colunas necessárias para `columnId` em `POST /task`. Prefira `isSettings=true` para listar só id/nome sem as tarefas.



## OpenAPI

````yaml https://api.juridiq.com.br/api-docs/client/openapi.json get /tasks-columns/
openapi: 3.1.0
info:
  title: Juridiq API — Documentação para Integradores
  description: ''
  version: 1.0.0
servers:
  - url: https://api.juridiq.com.br
    description: Production server
security:
  - apiKeyAuth: []
tags: []
paths:
  /tasks-columns/:
    get:
      tags:
        - Tasks
      summary: Listar colunas do kanban de tarefas
      description: >-
        Retorna as colunas necessárias para `columnId` em `POST /task`. Prefira
        `isSettings=true` para listar só id/nome sem as tarefas.
      parameters:
        - schema:
            type: string
          in: query
          name: page
          required: false
          description: Página. Começa em 1
        - schema:
            type: string
          in: query
          name: limit
          required: false
          description: Itens por página
        - schema:
            type: string
          in: query
          name: name
          required: false
          description: Filtra por nome da coluna
        - schema:
            type: string
          in: query
          name: title
          required: false
        - schema:
            type: string
          in: query
          name: priority
          required: false
        - schema:
            type: string
          in: query
          name: status
          required: false
        - schema:
            type: string
          in: query
          name: isPrivate
          required: false
          description: true ou false
        - schema:
            type: string
            format: uuid
          in: query
          name: taskColumnId
          required: false
        - schema:
            type: string
          in: query
          name: isSettings
          required: false
          description: true = só metadados das colunas (recomendado para obter columnId)
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  columns:
                    type: object
                    additionalProperties:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: ID da coluna — use como columnId ao criar tarefa
                        name:
                          type: string
                          nullable: true
                        index:
                          type: number
                          nullable: true
                        officeId:
                          type: string
                        tasks:
                          type: array
                          items: {}
                        createdAt:
                          anyOf:
                            - type: string
                            - type: string
                              format: date-time
                        updatedAt:
                          anyOf:
                            - type: string
                            - type: string
                              format: date-time
                      required:
                        - id
                        - name
                      additionalProperties: true
                    description: Mapa id → coluna. Use o id como columnId em POST /task
                  total:
                    type: number
                    description: Total de colunas
                required:
                  - columns
                  - total
                additionalProperties: true
        '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
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-juridiq-api-key
      description: >-
        Chave de API do escritório (criada no painel). Envie o valor no header
        x-juridiq-api-key.

````