Skip to content
This repository has been archived by the owner on Jul 27, 2018. It is now read-only.

Inchdev/pinch-node

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pinch API

Installation

The generated code relies on node package manager (npm) being available to resolve dependencies. You can install this package with this npm command : npm install pinch-api --save

Quick start

The following shows how import the controllers and use:

  1. Import the module:
  var pinch = require('pinch-api');
  1. Configure authentication parameters. For example:
  pinch.configuration.xAPITOKEN = 'MY_API_KEY';
  pinch.configuration.xAPIEMAIL = 'myemail@example.com';
  1. Make your requests :
var ticketId = 42;
pinch.TicketController.get(ticketId, function(error, result){
  console.log(result);
});

Documentation

Please refer to the nodejs documentation.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%