0.0.1 • Published 8 years ago

fatture-in-cloud-node v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

fatture-in-cloud-node

Build Status

Fatture in Cloud API wrapper for Nodejs

Install

$ yarn add fatture-in-cloud-node

Usage

const FattureInCloud = require('fatture-in-cloud-node');

const pageNumber = 1;
const fattureInCloud = new FattureInCloud({api_key: '', api_uid: ''});
fattureInCloud
	.listUsers(pageNumber)
	.then(users => console.log(users))
/* =>
	"lista_clienti": [
    {
      "id": "someRandomId",
      "nome": "Something",
      "referente": "",
      "indirizzo_via": "",

      etc...
    }, {
			"id": "someRandomId",
			...
		}
*/

API

class FattureInCloud(CREDENTIALS)

CREDENTIALS

Type: object

{
	api_key: '',
	api_uid: ''
}

Methods

// TODO -> ref index.js for now.

License

MIT © LasaleFamine

0.0.1

8 years ago