Header for the Stamping Service (SOAP)
The ImageMaster Stamping Service can be used to retrieve a modified document rendition where a watermark is visible as an overlay. To obtain a stamped rendition, the stamping header can be used:
-
namespaceURI - “http://www.tsystems.com/ima/stamping”, localPart- “customStamp”
For further conditions that apply see Stamping Service header (REST).
Example:
In the following code block there is an example how to retrieve a document via the SOAP service. The content of the document will be stamped with the stamp of the name “MyStamp”:
Copy
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:ns="http://www.tsystems.com/ima9/integrationws/messaging/201101">
<soap:Header>
<cs:customStamp xmlns:cs="http://www.tsystems.com/ima/stamping">MyStamp</cs:customStamp>
</soap:Header>
<soap:Body>
<ns:getDocument>
<documentId>35e01982-9507-11ea-86e3-0242ac110205</documentId>
</ns:getDocument>
</soap:Body>
</soap:Envelope>