How to Skip the E-Sign Pop-UP
Once recipient settings have been set, customers can configure their implementation to skip the E-Sign Pop-Up with a single property called SkipESignPopup. When this property is set to True, the only time users will see the E-Sign Pop-Up is when certain information required for the envelope has not been either prefilled or entered on the form. In this case, the E-Sign Pop-Up will be displayed to the user with all information set as ReadOnly except for fields where required information is missing. The user must enter this missing information in the E-Sign Pop-Up, and click Send to begin the signing process.
Otherwise, when all required information has either been configured beforehand or entered onto the form itself, the E-Sign Pop-Up will never be displayed to users. See sample code on how to enable this property below.
Note: Only the relevant properties are shown in the code samples below.Â
Quik! Forms Engine .dll
var objQFE = new QuikFormsEngine.QuikFormsEngine(); /*some QFE configuration*/ var docusign = new ESignTypeDocusign(); docusign.SkipESignPopup = true; /*other docusign configuration*/ objQFE.SetESignType(docusign);
REST
{ "ESignType": { "Type": "Docusign", "SkipESignPopup": "true" } }
SOAP
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header> <AuthenticationHeader xmlns="https://websvcs.quikforms.com/quikformsenginews/"> <CustomerID>xxxx</CustomerID> <UserName>xxxx</UserName> <Password>xxxx</Password> </AuthenticationHeader> </soap:Header> <soap:Body> <Execute xmlns="https://websvcs.quikforms.com/quikformsenginews/"> <QFESettings> <ESignType xsi:type="ESignTypeDocusign"> <SkipESignPopup>true</SkipESignPopup> </ESignType> </QFESettings> </Execute> </soap:Body> </soap:Envelope>
For help regarding Quik! Forms and the Quik! API
Email: support@quikforms.com | Phone: (877) 456-QUIK