0.0.2 • Published 11 years ago

jotform-api-nodejs v0.0.2

Weekly downloads
15
License
-
Repository
github
Last release
11 years ago

jotform-api-nodejs

JotForm API - NodeJS Client

Installation

$ npm install jotform

Documentation

You can find the docs for the API of this client at http://api.jotform.com/docs/

Authentication

JotForm API requires API key for all user related calls. You can create your API Keys at API section of My Account page.

Examples

var jotform = require("jotform")

jotform.options({
	debug: true,
	apiKey: "YOUR_API_KEY"
});

jotform.getUser()
.then(function(r){
	/* successful response after request */
})
.fail(function(e){
	/* handle error */
}

See Documentation for full list of methods available.

0.0.2

11 years ago

0.0.1

11 years ago

0.0.0

11 years ago