Versions Compared

Key

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

...

  1. Makes a POST request to a Quik! rest service method in order to get the necessary information needed for generating an envelope at Docusign, including the PDFs of the generated forms plus sign-related data.
  2. Calls the EnvelopeCreator dll to generate the envleope, passing the Docusign's integrator key and API version. Since this is a sample project, the values are provided via web config keys (DocusignAPIVersion and DocusignIntegratorKey). The customer needs to pass these values accordingly.
  3. Returns the Docusign response after generating an envelope, This result should NOT be manipulated so that the Quik! Forms Engine can read the result and notify the response to the user.

    Expected format of DocuSign response:

    {

     "ErrorCode":  0,

     "Message": "string",

     "EnvelopeResponse": "string"

    }

Note: As of June 2018, the call to our endpoint (selfservicedata) will now return Null in the Authentication object. Customers will need to provide it somehow. For the sake of simplicity, this project is pulling the data from the web config file (OAuthToken at Docusign, Docusign environment, etc).

...