> ## 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 com tarefas por quadro

> Retorna colunas do quadro kanban com tarefas, paginação e filtros



## OpenAPI

````yaml https://api.juridiq.com.br/openapi.json post /task-board/list-column-with-tasks-by-board
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/list-column-with-tasks-by-board:
    post:
      tags:
        - Task Board
      summary: Listar colunas com tarefas por quadro
      description: Retorna colunas do quadro kanban com tarefas, paginação e filtros
      operationId: listColumnWithTasksByBoard
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                boardId:
                  type: string
                  format: uuid
                columnId:
                  type: string
                  format: uuid
                page:
                  type: integer
                  exclusiveMinimum: true
                  minimum: 0
                  default: 1
                filters:
                  type: object
                  properties:
                    title:
                      type: string
                    responsible:
                      anyOf:
                        - type: string
                        - type: array
                          items:
                            type: string
                    priority:
                      anyOf:
                        - type: string
                          enum:
                            - Alta
                            - Média
                            - Baixa
                        - type: array
                          items:
                            type: string
                            enum:
                              - Alta
                              - Média
                              - Baixa
                    processNumber:
                      type: string
                    lawSuitId:
                      type: string
                    personId:
                      type: string
                      format: uuid
                    personName:
                      type: string
                    orderByField:
                      type: string
                    orderBy:
                      type: string
                      enum:
                        - asc
                        - desc
                    dateMethod:
                      type: string
                      enum:
                        - all
                        - initialDate
                        - finalDate
                        - completedAt
                        - subtaskFinalDate
                    start:
                      type: string
                    end:
                      type: string
                    tag:
                      anyOf:
                        - type: string
                        - type: array
                          items:
                            type: string
                    points:
                      type: number
                    taskKanbanColumnIds:
                      anyOf:
                        - type: string
                          format: uuid
                        - type: array
                          items:
                            type: string
                            format: uuid
                    showCompleted:
                      type: boolean
                      nullable: true
                  additionalProperties: false
                  default: {}
              required:
                - boardId
              additionalProperties: false
        required: true
      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}'

````