fatture-in-cloud-node
v0.0.1
Published
Fatture in Cloud API wrapper for Nodejs
Downloads
1
Readme
fatture-in-cloud-node
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