About this endpoint
What it does
Converts one or more Excel files (.xlsx, .xlsm, .xls) to PDF. The request uploads the files, and the response returns a list of conversion jobs for the submitted files.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| files | String Array | Yes | Excel files to convert to PDF. Each array item is a binary file. Max File Upload limit - 5 |
Response
Returns a JSON object with a jobs array field. Each item in jobs is an object containing the conversion job details: job_id (string), filename (string), status (string), and progress (integer).
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| jobs | Object Array | Yes | The list of conversion jobs returned for the uploaded files. |
| jobs[].job_id | String | Yes | The job identifier for the conversion job. |
| jobs[].filename | String | Yes | The output PDF filename. |
| jobs[].status | String | Yes | The job status. |
| jobs[].progress | Integer | Yes | The job progress value. |