HelloWorks Node.js SDK
A Node.js SDK for easily creating and managing HelloWorks workflow instances.
Usage
Start by installing the HelloWorks SDK from npm.
npm install helloworks-sdk
In your backend app, require the helloworks-sdk
library and instantiate a new client with your API key ID and secret.
const HelloWorks = require('helloworks-sdk');
const client = new HelloWorks({
apiKeyId: 'Your API key ID',
apiKeySecret: 'Your API key secret'
});
Use the client to easily make HelloWorks API requests without the overhead of handling responses and managing authorization tokens.
client.workflowInstances.getInstance({
instanceId: 'Your instance ID'
}).then((instance) => {
});
More examples and documentation can be found in the API Documentation Wiki page.
Resources
© 2019 HelloSign. All rights reserved.