fatture-in-cloud-node

0.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i fatture-in-cloud-node

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • lasalefamine