Versions Compared

Key

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

If you plan to collect your own envelope information and call the Quik! web service for Docusign directly, then use this URL.


PLEASE VISIT THE URL'S BELOW FOR THE LATEST XML FORMAT
Service URL: https://websvcs.quikforms.com/Docusign/ESignWSVersion/5202/GetDocusignData.asmx
Service WSDL: https://websvcs.quikforms.com/Docusign/ESignWSVersion/5202/GetDocusignData.asmx?WSDL

Methods:

The following methods are used to generate the PDF and XML data objects to send to DocuSign. Only ETI can perform this step – this function cannot be implemented on your own servers.

  • GetDocusignResources – Prepares and returns a PDF and XML file for DocuSign in XML response format
  • GetDocusignResourcesJSON – Prepares and returns a PDF and XML file for DocuSign in JSON response format

 

GetDocusignResources

This method processes forms to create an XML file and PDF document for use with DocuSign and responds in XML format.

...

Field Name

Data Type

Length

Description

PDF

Base64 String

 

Returns the PDF file in a Base64 string that can be converted back to a Byte array

DSignXML

String

 

The DocuSign-ready XML with envelope information (e.g. recipients, field locations, etc.)

 

GetDocusignResourcesJSON

This method processes forms to create an XML file and PDF document for use with DocuSign and responds in JSON format (instead of XML format).

...

<?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:Body>
<GetDocusignResourcesJSON xmlns="https://websvcs.quikforms.com/Docusign/ESignWSVersion/5202/">
<strFormData>string</strFormData>
<strRecipientData>string</strRecipientData>
<strSignFieldData>string</strSignFieldData>
</GetDocusignResourcesJSON>
</soap:Body>
</soap:Envelope>

...

<?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:Body>
<GetDocusignResourcesJSONResponse xmlns="https://websvcs.quikforms.com/Docusign/ESignWSVersion/5202/">
<GetDocusignResourcesJSONResult>string</GetDocusignResourcesJSONResult>
</GetDocusignResourcesJSONResponse>
</soap:Body>
</soap:Envelope>

...