Configuring CreateEnvelopeAsDraft

Customers can use the CreateEnvelopeAsDraft property to build a DocuSign envelope in Draft status. This is a boolean property that is FALSE by default (envelope is automatically sent to the first recipient immediately).

When TRUE, the envelope will be sent to DocuSign in Draft status (Quik! does not support any other status options). A possible use case for this feature is when customers want to approve an envelope before it is sent to clients.

Draft envelopes as seen in the DocuSign Administrative UI below:

Note: Draft envelopes are stored in your DocuSign account for 30 days from the date they were created. After 30 days, drafts are removed from your account and purged from the system.

Sample Code

REST

{ "ESignType": { "Type": "Docusign", "AuthUserID": "YOUR_AUTHUSERID", "SignCallbackURL": "YOUR_SIGNCALLBACKURL, "SignEnvironmentID": 2, "AccountID": YOUR_ACCOUNTID, "CreateEnvelopeAsDraft": true }, "HostFormOnQuik": true, "QuikFormID": "1" }

 

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>YOUR_CUSTOMERID</CustomerID> <UserName>YOUR_USERNAME</UserName> <Password>YOUR_PASSWORD</Password> </AuthenticationHeader> </soap:Header> soap:Body <Execute xmlns="https://websvcs.quikforms.com/quikformsenginews/"> <QFESettings> <QuikFormID>1</QuikFormID> <HostFormOnQuik>true</HostFormOnQuik> <ESignType xsi:type="ESignTypeDocusign"> <SignCallBackURL>YOUR_SIGNCALLBACKURL</SignCallBackURL>> <SignEnvironmentID>2</SignEnvironmentID> <AuthUserID>YOUR_AUTHUSERID</AuthUserID> <CreateEnvelopeAsDraft>true</CreateEnvelopeAsDraft> </ESignType> </QFESettings> </Execute> </soap:Body> </soap:Envelope>

For help regarding Quik! Forms and the Quik! API
Email: support@quikforms.com | Phone: (877) 456-QUIK