Versions Compared

Key

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

By default, recipient emails in the e-sign popup are prefilled using the same values that are entered or prefilled on the form itself. For example, if the form has a 1own.H.Email field prefilled with “john@company“name@company.com”, then its e-sign pop-up will automatically pull “john@company“name@company.com” for the Owner 1 signer.

...

In these cases, customers can directly prefill an email value into the e-sign pop-up using the following configuration ForcePrefill property in the Signers object. Code sample below:

Code Block
languagejson
{
  "HostFormOnQuik": true,
  "QuikFormID": "12",
  "ESignType": {
    "Type":"Signix",
    "SignEnvironmentID":8 ,
    "SignixSubmitterName":"<your SubmitterName>",
    "SignixSubmitterEmail":"<your SubmitterEmail>",
    "Recipients": {
         "Signers": [
            {
               "Email": {
                   "Value": "test@test.com",
                   "ForcePrefill": true
                 },
               "Role": "1rep"
             }   
        ]
      }
   }
}

In the above configuration, “test@test.com” is used for the Rep 1’s email in the e-sign pop-up, regardless of what is entered in the Rep 1’s email field on the form, or even if the form does not include a Rep 1 email.