Event Notifications and Document IDs
Monday, December 6, 2021 at 03:23pmIf a OneSpan Sign package has 3 documents to sign, does the event notification send one message to cover all three documents or does it send 3 messages with different Document Ids?
I am hoping that it sends a notification for each form that is signed during the ceremony with unique document ID.
Reply to: Event Notifications and Document IDs
Monday, December 6, 2021 at 07:45pmHi Peter,
If we are talking about "DOCUMENT_SIGNED" event, this event will be triggered every time a signer has signed a document, an example payload could look like below, where the "packageId", "documentId" and "sessionUser" allow you to identify which signer has signed the document.
{ "name": "DOCUMENT_SIGNED",
"sessionUser": "...",
"packageId": "......",
"documentId": "......", (max 256 chars)
"createdDate": "2017-05-02T20:17:58.408Z" }
On top of that, "SIGNER_COMPLETE" event will be triggered when a signer has completed signing all the documents, and "PACKAGE_COMPLETE" event will be triggered when the last signer has finished all the documents.
Duo