PostProcessRequest

The operation input is PostProcessRequest. The AccountID consists of the unique identifier associated with the account while the DocumentSet element contains information about the set of documents.

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.

Element tns:PostProcessRequest


<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:v2="http://www.wolterskluwerfs.com/2014/05/DocServices/V2" xmlns:data="http://www.wolterskluwerfs.com/2014/05/DocServices/V2/Data">
	<soap:Header/>
	<soap:Body>
		<v2:PostProcessSynchronous>
			<!--Optional:-->
			<v2:request>
				<data:AccountId>2</data:AccountId>
				<data:DocumentSet>
					<data:Documents>
						<!--1 or more repetitions:-->
						<data:Document>
							<data:DocumentID>Test1</data:DocumentID>
							<data:Data>
								<data:base64>JVBER...=</data:base64>
							</data:Data>
						</data:Document>
						<data:Document>
							<data:DocumentID>Test2</data:DocumentID>
							<data:Data>
								<data:base64>JVBER...=</data:base64>
							</data:Data>
						</data:Document>
					</data:Documents>
					<data:AncillaryOutput>
						<!--1 or more repetitions:-->
						<data:AncillaryOutputOption>
							<data:OutputType>PdfMerge</data:OutputType>
						</data:AncillaryOutputOption>
					</data:AncillaryOutput>
				</data:DocumentSet>
			</v2:request>
		</v2:PostProcessSynchronous>
	</soap:Body>
</soap:Envelope>