> ## 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 pastas do kanban

> Lista pastas de quadros de tarefas do escritório



## OpenAPI

````yaml https://api.juridiq.com.br/openapi.json get /task-board/list-folders
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-folders:
    get:
      tags:
        - Task Board
      summary: Listar pastas do kanban
      description: Lista pastas de quadros de tarefas do escritório
      operationId: listTaskBoardFolders
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema: {}
        '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
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Insira o token JWT no formato: Bearer {token}'

````