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

# カテゴリサンプルをアップロード

> 指定したファイルカテゴリに複数のサンプルファイルをアップロードします。最大 20 ファイルまで対応します



## OpenAPI

````yaml /docflow-global/ja/rest-api/openapi.bundle.yaml post /api/app-api/sip/platform/v2/category/sample/batch_upload
openapi: 3.0.0
info:
  title: DocFlow API
  description: DocFlow REST API。ファイルアップロードとファイル処理結果の取得機能を提供します。
  version: 2.8.4
  contact:
    name: TextIn
    url: https://www.textin.ai/contact?type=27&sub_type=1
servers:
  - url: https://docflow.textin.ai
security:
  - ApiId: []
    SecretCode: []
tags:
  - name: ワークスペース管理
    description: ワークスペース関連 API
  - name: ファイルカテゴリ
    description: ファイルカテゴリ関連 API
  - name: ファイルカテゴリサンプル
    description: ファイルカテゴリサンプル関連 API
  - name: スマートレビュー
    description: スマートレビュー関連 API
  - name: 廃止済み
    description: 廃止済み API
paths:
  /api/app-api/sip/platform/v2/category/sample/batch_upload:
    post:
      tags:
        - ファイルカテゴリサンプル
      summary: カテゴリサンプルをアップロード
      description: 指定したファイルカテゴリに複数のサンプルファイルをアップロードします。最大 20 ファイルまで対応します
      operationId: batchUploadCategorySample
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                workspace_id:
                  type: string
                  description: ワークスペース ID
                  example: '1234567890'
                category_id:
                  type: string
                  description: ファイルカテゴリ ID
                  example: '1234567890'
                files:
                  type: array
                  description: サンプルファイルリスト。最大 20 ファイル
                  items:
                    type: string
                    format: binary
                  minItems: 1
                  maxItems: 10
                with_detail:
                  type: boolean
                  description: true の場合、レスポンスにこのカテゴリの完全なサンプルリストを返します
              required:
                - workspace_id
                - category_id
                - files
      responses:
        '200':
          description: サンプルの一括アップロードに成功
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/CodeMessage'
                  - type: object
                    properties:
                      result:
                        type: object
                        properties:
                          samples:
                            type: array
                            description: このカテゴリの完全なサンプルリスト（with_detail=true の場合に返却）
                            items:
                              $ref: '#/components/schemas/CategorySample'
components:
  schemas:
    CodeMessage:
      type: object
      properties:
        code:
          type: integer
          description: ステータスコード
          example: 200
        msg:
          type: string
          description: ステータス説明
      required:
        - code
        - msg
    CategorySample:
      type: object
      description: ファイルカテゴリサンプル
      properties:
        sample_id:
          type: string
          description: サンプル ID
          example: '1234567890'
        file_name:
          type: string
          description: ファイル名
          example: invoice_sample.pdf
      required:
        - sample_id
        - file_name
  securitySchemes:
    ApiId:
      type: apiKey
      in: header
      name: x-ti-app-id
    SecretCode:
      type: apiKey
      in: header
      name: x-ti-secret-code

````