Versions Compared

Key

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

...

Code Block
languagejson
  "ESignType": 
  {
    "Type":"Docusign",
    "HTMLButtonSignName": "Docusign!",
    "SignSubject": "Sign Subject test",
    "SignEnvironmentID": 2, // Add the environment ID (demo|NA1|NA1|etc)
    "SignCallBackURL": "http://www.test.com", // Add your domain here
    "SOBOFlag": true,
    "AuthUserID":"Auth User", // Add the CustomerUserID for authenticatation
    "SenderUserID": "0303456" // Add the CustomerUserID that will act as Sender if SOBO is enabled
   }


VB.NET
Code Block
languagevb
Dim docusign As New ESignTypeDocusign()
                    docusign.HTMLButtonSignName = "Docusign!"
                    docusign.SignSubject = "Sign Subject test"
                    docusign.SignEnvironmentID = 2    'Add the environment ID (demo|NA1|NA2|etc)
                    docusign.SignCallBackURL = "http://www.test.com" 'Add your domain here
                    docusign.SOBOFlag = True          
                    docusign.AuthUserID = "Auth User"  'Add the CustomerUserID for authentication
                    docusign.SenderUserID = "0303456" 'Add the CustomerUserID that will act as Sender if SOBO is enabled
  
 Dim objQFE As QuikFormsEngine.QuikFormsEngine
                objQFE = New QuikFormsEngine.QuikFormsEngine
                objQFE.SetESignType(docusign)

...