Versions Compared

Key

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

...

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

SOAP

Code Block
languagexml
<?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>