Toolbox
The Toolbox web service provides various PDF operations that can be executed on existing PDF documents. These include, for example, functions for rotating pages, merging or splitting PDF documents and exporting PDF documents into other formats.
| HTTP REST-API | OpenAPI |
|---|---|
POST /toolbox/{documentId} | 🔗 |
The selection of the PDF operations to be executed is made via the parameters of the web service call. In the parameters, an array is defined for the toolbox parameter, which contains the operation. Each entry in the array describes the operation to be executed, with its respective parameters. The possible operations are defined in the API documentation under toolbox.
You can perform several operations in one call with the Toolbox web service if you set multiple entries in the toolbox array in the parameters.
Example of the rotate function
{
"toolbox": [
{
"rotate": {
"degrees": 90,
"orientationDetectMode": "value",
"pageGroup": "all",
"pageOrientation": "any",
"pages": "1"
}
}
]
}