Split PDF file.
POST/pdf/split
Split PDF file.
Request
Header Parameters
ipaas string
- application/json
Bodyrequired
urlstring
The PDF URL.
bufferstring
The PDF as a Base64-encoded buffer. Can be specified instead of url.
pagesstring[]
The page ranges that should be contained in the new PDF files. Every subdocument is given as a comma-separated range of pages, where 1 means the first page and ^1 means the last page.
intervalnumber
The number of pages that should be contained in every split PDF file. Can be specified instead of pages.
fileNamestring
The file name prefix the result PDFs will have. Default is a random ID.
Responses
- 200
- 400
Success
- application/json
- Schema
- Example (auto)
Schema
pdfUrlsstring[]required
The URLs of all split PDF files.
{
"pdfUrls": [
"string"
]
}
Bad Request
- application/json
- Schema
- Example (auto)
Schema
statusnumber
errorMessagestring
{
"status": 0,
"errorMessage": "string"
}