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

# Request Large Export Email

> Enqueue a large-export job — runs in the background and emails a
secure, time-limited download link when the export finishes. 24h SLA
promised in the email.



## OpenAPI

````yaml /openapi.json post /v1/documents/export/email-request
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /v1/documents/export/email-request:
    post:
      tags:
        - v1
        - documents
      summary: Request Large Export Email
      description: |-
        Enqueue a large-export job — runs in the background and emails a
        secure, time-limited download link when the export finishes. 24h SLA
        promised in the email.
      operationId: request_large_export_email
      parameters:
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LargeExportEmailRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    LargeExportEmailRequest:
      properties:
        session_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Session Id
        format:
          type: string
          title: Format
          default: docx
        options:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Options
        filename:
          anyOf:
            - type: string
            - type: 'null'
          title: Filename
        recipient_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Recipient Email
      type: object
      title: LargeExportEmailRequest
      description: >-
        Body for POST /v1/documents/export/email-request.


        Used when a synchronous export exceeds the inline body cap. Send the
        same

        payload you would POST to /v1/documents/export (minus the html field —

        that comes from the session). The export is generated in the background

        and a secure download link is emailed within 24h.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````