Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejson
{
   "QuikFormID": "38002,218",
   "ESignType": {
      "Type": "Docusign",
      "AuthUserID": "<MyAuthUserID>",
      "SignCallbackURL": "<MySignCallbackURL>",
      "SignEnvironmentID": <MySignEnvironment>,
      "SignMultipleDocs": true,
      "EnforceSignerVisibility": true,
      "Recipients": {
         "Signers": [
            {
               "Role": "1osj",
               "ExcludedDocuments": [38002]
            }
         ]
      }
   }

Use Case #2:

Similarly to Use Case #1, let’s say that instead of an OSJ being required to sign as Pershing, Pershing only wants to receive a signed carbon copy of their own forms, and no one at Pershing is required to sign. In this case, we can configure ExtraRecipients to send Pershing a carbon copy of only the signed Pershing form (Form ID 218).

In the below example, Owner 1 is being asked to sign all forms, and a carbon copy of Form ID 218 is being sent to Pershing as an ExtraRecipient.

Code Block
{
    "QuikFormID": "38002,218",
    "ESignType": {
        "Type": "Docusign",
        "AuthUserID": "<MyAuthUserID>",
        "SignCallbackURL": "<MySignCallbackURL>",
        "SignEnvironmentID": "<MySignEnvironment>",
        "SignMultipleDocs": true,
        "EnforceSignerVisibility": true,
        "Recipients": {
            "Signers": [
                {
                    "Role": "1own",
                    "SendType": "EmailToSign"
                }
            ],
            "ExtraRecipients": [
                { 
                    "Name": "Pershing Recipient",
                    "Email": "Pershing Email", 
                    "RecipientNumber": 1,
                    "ExcludedDocuments": [38002] 
                }
            ]
        }
    }
}

Please note that you will need to configure a custom Sign Message since by default, all forms will be listed in the sign message (including excluded documents).