About this endpoint
What it does
Converts one or more PDF files into Word documents. The request uploads PDF files, and the response returns a JSON object containing a jobs array with one job entry per file.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| files | String Array | Yes | PDF files to convert to Word. Each array item is a binary file. Max File Upload limit - 5 |
Response
Returns a JSON object with a jobs array. Each array item is an object containing job_id (string), filename (string), status (string), and progress (integer).
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| jobs | Object Array | Yes | Array of job objects returned for the submitted files. |
| jobs[].job_id | String | Yes | Job identifier for the conversion task. |
| jobs[].filename | String | Yes | Original filename associated with the job. |
| jobs[].status | String | Yes | Current job status. |
| jobs[].progress | Integer | Yes | Current progress value for the job. |