About this endpoint
What it does
Converts one or more PDF files into Excel .xlsx files. The request uploads PDF files in the body, and the response returns a batch identifier plus a list of per-file jobs.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| files | String Array | Yes | PDF files to convert to Excel. |
Response
Returns a JSON object with a required batch_id string and a required jobs array. Each item in jobs is an object describing one submitted file conversion job.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| batch_id | String | Yes | Parent id for this submit; also returned as X-Apy-Job-Id. |
| jobs | Object Array | Yes | Array of per-file job objects. |
| jobs[].job_id | String | Yes | Job identifier for the submitted file. |
| jobs[].filename | String | Yes | Original filename of the uploaded PDF file. |
| jobs[].status | String | Yes | Job status for the file conversion. |
| jobs[].progress | Integer | Yes | Progress value for the file conversion job. |
| jobs[].batch_id | String | No | Parent batch id this child belongs to. |