Skip to content

Releases: jotform/jotform-api-nodejs

v1.0.1

27 Dec 14:06
Compare
Choose a tag to compare
Fixed main field of package json

v1.0

27 Dec 13:46
e46b87a
Compare
Choose a tag to compare
Modern version with Typescript

v0.1.3

10 Oct 08:06
Compare
Choose a tag to compare
0.1.3

v0.1.1

06 Sep 11:37
Compare
Choose a tag to compare
no cache added to GET /user/submissions

v0.1.0

17 Dec 20:33
Compare
Choose a tag to compare

Additional queries added to getForms method such as limit, offset, filter

Simple Usage

jotform.getForms({
  limit: 100,
  offset: 0,
  filter: {new: 1},
  orderby: 'id',
  direction: 'ASC'
 }).then(function(response){
   console.log(response);
 }).fail(function(errors){
    console.log(errors);
 });

check docs for more info.