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

# Get File Category Table List

> Get all tables configured under the specified file category



## OpenAPI

````yaml /docflow-global/en/rest-api/openapi.bundle.yaml get /api/app-api/sip/platform/v2/category/tables/list
openapi: 3.0.0
info:
  title: DocFlow API
  description: >-
    DocFlow REST API, providing file upload and file processing result retrieval
    capabilities
  version: 2.8.4
servers:
  - url: https://docflow.textin.ai
security:
  - ApiId: []
    SecretCode: []
paths:
  /api/app-api/sip/platform/v2/category/tables/list:
    get:
      tags:
        - File Category
      summary: Get File Category Table List
      description: Get all tables configured under the specified file category
      operationId: listCategoryTables
      parameters:
        - name: workspace_id
          in: query
          description: Workspace ID
          required: true
          schema:
            type: string
            example: '1234567890'
        - name: category_id
          in: query
          description: File category ID
          required: true
          schema:
            type: string
            example: '1234567890'
      responses:
        '200':
          description: Successfully retrieved file category table list
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/CodeMessage'
                  - type: object
                    properties:
                      result:
                        type: object
                        properties:
                          tables:
                            type: array
                            description: Table list
                            items:
                              type: object
                              properties:
                                id:
                                  type: string
                                  description: Table ID
                                  example: '1234567890'
                                name:
                                  type: string
                                  description: Table name
                                  example: Table 1
                                prompt:
                                  type: string
                                  description: Table semantic extraction prompt
                                  example: >-
                                    Extract item name, quantity and amount from
                                    each row
                                collect_from_multi_table:
                                  type: boolean
                                  description: Merge multiple tables
                                  example: true
                                extract_model:
                                  type: string
                                  description: >-
                                    Table-level extraction model
                                    (Auto/Acgpt/Acgpt-VL/DF-M1)
                                  example: Acgpt
components:
  schemas:
    CodeMessage:
      type: object
      properties:
        code:
          type: integer
          description: Status code
          example: 200
        msg:
          type: string
          description: Status description
      required:
        - code
        - msg
  securitySchemes:
    ApiId:
      type: apiKey
      in: header
      name: x-ti-app-id
    SecretCode:
      type: apiKey
      in: header
      name: x-ti-secret-code

````