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

# Create bulk render job from file

> Create a bulk render job by uploading a CSV, Excel, or JSON file with variable data.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/dev/bulk-render/file
openapi: 3.0.0
info:
  title: Autype Developer API
  description: >-
    Autype Developer API for programmatic document generation.


    ## Authentication

    All endpoints require an API key. Include it in the `X-API-Key` header or as
    a Bearer token.


    ## Rate Limiting

    API requests are rate-limited to 100 requests per minute per API key.


    ## Token Billing

    Rendering operations consume tokens from your organization's balance.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.autype.com
    description: Production
security: []
tags:
  - name: Temporary Images
    description: Upload and manage temporary images for document rendering
  - name: Render
    description: Render documents to PDF, DOCX, or ODT
  - name: Bulk Render
    description: Bulk document generation with variable substitution
  - name: Documents
    description: Document variable inspection
  - name: Projects
    description: List organization projects
paths:
  /api/v1/dev/bulk-render/file:
    post:
      tags:
        - developer-api
      summary: Create bulk render job from file
      description: >-
        Create a bulk render job by uploading a CSV, Excel, or JSON file with
        variable data.
      operationId: BulkRenderController_createBulkRenderFromFile_v1
      parameters: []
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - file
                - documentId
                - format
              properties:
                file:
                  type: string
                  format: binary
                  description: CSV, Excel (.xlsx), or JSON file
                documentId:
                  type: string
                  format: uuid
                  description: Document ID to render
                format:
                  type: string
                  enum:
                    - PDF
                    - DOCX
                    - ODT
                  description: Output format
                webhookUrl:
                  type: string
                  description: Webhook URL for completion notification
      responses:
        '201':
          description: Bulk render job created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkRenderResponseDto'
        '400':
          description: Validation error, invalid file, or insufficient credits
        '401':
          description: Invalid or missing API key
        '403':
          description: Document does not belong to organization
        '404':
          description: Document not found
      security:
        - api-key: []
components:
  schemas:
    BulkRenderResponseDto:
      type: object
      properties:
        bulkJobId:
          type: string
          description: Bulk job ID for status polling
        status:
          type: string
          enum:
            - PENDING
            - PROCESSING
            - COMPLETED
            - FAILED
        format:
          type: string
          enum:
            - PDF
            - DOCX
            - ODT
        totalItems:
          type: number
          description: Total number of items to render
        completedItems:
          type: number
          description: Number of completed items
        failedItems:
          type: number
          description: Number of failed items
        webhookUrl:
          type: string
          description: Webhook URL if configured
        createdAt:
          format: date-time
          type: string
      required:
        - bulkJobId
        - status
        - format
        - totalItems
        - completedItems
        - failedItems
        - createdAt
  securitySchemes:
    api-key:
      type: apiKey
      in: header
      name: X-API-Key
      description: API Key (starts with ak_...)

````