Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 794 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 794 Bytes

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.