v1

latestOpenAPI 3.0.3MIT2026-07-24122271451.2 KB
Documents

[Beta] Create DOCX Export Task

⏱️ Export as DOCX is a non-blocking (asynchronous) operation The document generation process may take some time. With a successful request, you receive a response with task ID, status created and document id. After process completes, usually in a few minutes, the task status moves to the done state. You can download documents up to 300 pages. For documents of 301+ pages, you will receive an error “400: The number of pages more then limit 300”

post/public/beta/documents/{document_id}/docx-export-tasks

Path parameters

document_idstring required

Specify document id.

Response

Export DOCX task was created.

idstring required

Export task id.

document_idstring required

Document id.

status'created' | 'processing' | 'done' | 'error' required
StatusDescription
createdThe export task has been created, but the process has not started.
processingThe export task is in progress.
doneThe export task is completed, and the response contains URLs for downloading the documents.
errorAn error occurred during the execution of the export task.

Example response

{
  "id": "nPh2PDhFdDqAES9k64h9qX",
  "document_id": "BhVzRcxH9Z2LgfPPGXFUBa",
  "status": "created"
}