About this endpoint
What it does
Converts one or more Word files into PDF files by accepting uploaded files in the request body. The response returns a JSON object containing a jobs array with job details for each file.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| files | String Array | Yes | Word files (.docx, .doc, .rtf, .odt) to convert to PDF. |
Response
Returns a JSON object with a jobs array field. Each item in jobs is an object containing job_id, filename, status, and progress.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| jobs | Object Array | Yes | Array of job objects, one per converted file. |
| jobs[].job_id | String | Yes | Job identifier. |
| jobs[].filename | String | Yes | Output filename. |
| jobs[].status | String | Yes | Job status. |
| jobs[].progress | Integer | Yes | Job progress value. |