JotForm API - NodeJS Client
$ npm install jotform
You can find the docs for the API of this client at http://api.jotform.com/docs/
JotForm API requires API key for all user related calls. You can create your API Keys at API section of My Account page.
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.