LoanCo is a sample loan app that shows some common ways an application might interact with the DocuSign eSignature API. Various switches (authentication, embedded signing, templates) can be changed to show additional platform and API features and how easy they are to add to your own solution. LoanCo offers three (3) different loan workflows that demonstrate various features and workflows available through the platform.
git clone <repo>
cd <repo directory>
npm install
npm start
npm start
DocuSign has multiple ways of authenticating your app. This example is using Code Grant, which requires us to store a ClientSecret in addition to the Integration Key. read more about different authentication methods at https://developers.docusign.com/esign-rest-api/guides/authentication
We use environment variables to setup our configuration. You can store these variables in a .env
file at the root (dotenv
package is used)
DOCUSIGN_ENVIRONMENT=demo // use "www" for production
DOCUSIGN_IK= // Integration Key
EMPLOYEE_EMAIL= // used for final recipient of Personal Loan
EMPLOYEE_NAME= // used for final recipient of Personal Loan
LOCAL_RETURN_URL=http://localhost/ // change to the correct return url, with a trailing slash
BRAND_ID= // not required, use to show a different Brand for the Sailboat example
GOOGLE_MAPS_API_KEY= // required for Sailboat example to work
GOOGLE_TAG_MANAGER= // GTM-XYZ
DEFAULT_EMAIL= // for autofilling email input fields
FORCE_HTTPS= // force https by setting to true
Templates are not currently automatically created. To create the Auto Loan template, follow these steps:
- Visit your Templates tab: https://appdemo.docusign.com/templates
- Click "New" and "Upload Template"
- Upload the file "pdfs/template-auto-loan.json" and click on the newly-created Template
- Copy the Template ID by clicking the "(I)" or information icon next to the Template title
- Paste the Template ID into the "pdfs/template-auto-loan.json" file, replacing the existing templateId value
- Restart the sample using
npm start
Todo: When initially run, the app will attempt to create a Template for the Auto Loan Application. This template is defined at
pdfs/template-auto-loan.json
.
A few requirements:
- Make sure you have the heroku toolbelt/CLI installed locally
- Fill out the fields in the
.env
file after cloning - Install heroku-config to send your local env variables in .env to heroku (
heroku plugins:install heroku-config
)
Code:
git clone <repo>
cd <repo directory>
# <fill out fields in .env file>
# create heroku app
heroku create
# test locally
heroku local
# push up .env file to heroku config (heroku plugins:install heroku-config)
heroku config:push
# push repo up to heroku
git push heroku master
# view online
heroku open
{
errorCode: 'ACCOUNT_LACKS_PERMISSIONS',
message: 'This Account lacks sufficient permissions. Document Visibility has been specified. This account does not have document visibility turned on.'
}
Change this setting: http://imgur.com/j4VD6nd on https://admindemo.docusign.com/sending-settings
{
errorCode: 'PLAN_ITEM_NOT_ENABLED',
message: 'A requested plan item is not enabled for this account. Plan item: AllowRequireWetSign'
}
Contact Support ([email protected]) and request "Allow Require Wet Sign" to be enable on your account, and then change this setting: http://imgur.com/a/mJ5WC on https://admindemo.docusign.com/signing-settings under "Recipients"
Developer Center
https://developers.docusign.com
API Code Examples
https://developers.docusign.com/esign-rest-api/code-examples
API Documentation
https://developers.docusign.com/esign-rest-api/reference
API Explorer
https://apiexplorer.docusign.com/
The DocuSign LoanCo Sample App is licensed under the MIT License.