trevorewen

Sending Signers a Copy of Signed Document

0 votes
I use the package creation document upload API to create a document for signature. I want to make sure our signers receive a signed copy of their document at the end of signing. How can I assure that the signed document (other than the disclosure) is attached to the success email at conclusion. Thanks

Reply to: Sending Signers a Copy of Signed Document

0 votes
Hey Trevor, You can ensure that the signed documents are delivered as an email attachment at the end of the signing ceremony by setting "email" to true in "delivery" when building your roles object. Below is an example of how you would build your JSON to achieve that:
 {
  "type": "PACKAGE",
  "roles": [
    {
      "type": "SIGNER",
      "signers": [
        {
          "delivery": {
            "provider": true,
            "email": true,
            "download": true
          },
          "email": "[email protected]",
          "firstName": "John",
          "lastName": "Smith"
        }
      ],
      "name": "Signer1"
    }
  ],
  "status": "DRAFT",
  "name": "TEST Package"
}
Haris Haidary OneSpan Technical Consultant

Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off