Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

helloworks-sdk

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

helloworks-sdk

A Node.js SDK for easily creating and managing HelloWorks workflow instances.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
15
decreased by-54.55%
Maintainers
1
Weekly downloads
 
Created
Source

HelloWorks Node.js SDK

A Node.js SDK for easily creating and managing HelloWorks workflow instances.

Npm version Npm downloads Travis David


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.

Keywords

FAQs

Package last updated on 13 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc