About this endpoint
What it does
Converts one or more Word files to PDF by accepting uploaded files in the request body and returning a list of conversion jobs. The response contains the job details for each submitted file.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| files | String Array | Yes | Word files (.docx, .doc, .rtf, .odt) to convert to PDF. Max File Upload limit - 5 |
Response
Returns a JSON object with a jobs array field. Each item in jobs is an object containing job_id as a string, filename as a string, status as a string, and progress as an integer.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| jobs | Object Array | Yes | List of conversion jobs returned by the endpoint. |
| jobs[].job_id | String | Yes | Unique identifier for the job. |
| jobs[].filename | String | Yes | Output filename for the converted PDF. |
| jobs[].status | String | Yes | Current job status. |
| jobs[].progress | Integer | Yes | Conversion progress value. |