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](http://api.jotform.com/docs/) for more info.