Overview
The PostProcess-Synchronous method is used to merge specific individual PDF
documents into a combined PDF document.
Table 1. Method
| Method |
URL |
Description |
| POST |
/api/v1/Document/account/{accountId}/PostProcess-Synchronous |
The PostProcess-synchronous operation is used to merge supplied
PDFs into a single document |
Table 2. Request Parameters
| Name |
Type |
Constraints |
Description |
| accountId |
integer |
required |
The account used to associate to the request. |
| Parameter |
Type |
Constraints |
Description |
| AccountId |
string |
Required |
The unique identifier associated with the
account. |
| DocumentSet |
PostProcessDocumentSet |
Required |
A container of information about the Post Process
set of documents. |
Sample Request
{
"postProcess": {
"request": {
"documentSet": {
"documents": [
{
"documentID": "Test1",
"data": {
"base64": "JVBER...="
}
}
],
"ancillaryOutput": [
{
"outputType": "PdfMerge"
}
]
}
}
}
}
Sample Response
{
"documentSet": {
"documents": [
{
"documentID": "Test1",
"data": {
"base64": "JVBER...="
}
}
],
"data": {
"base64": "JVBER...="
}
},
"status": "Sucessful",
"statusDescription": "Complete without errors."
}