Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Current »

Quik! allows customers to send forms to DocuSign on behalf of another person. See sample code below on how to configure this.


JSON (REST)
  "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
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)


C#
ESignTypeDocusign docusign = New ESignTypeDocusign
	  {
		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
	  };      
         QuikFormsEngine.QuikFormsEngine objQFE = new QuikFormsEngine.QuikFormsEngine();
         objQFE.SetESignType(docusign);


  • No labels