1.2.1 • Published 5 years ago

space-invoices v1.2.1

Weekly downloads
6
License
ISC
Repository
github
Last release
5 years ago

Space Invoices Node.js SDK

The Space Invoices SDK provides an easy way to access Space Invoices API from application written NodeJs.

Documentation

Detailed documentation about the API can be found at docs.spaceinvoices.com

We also invite you to join our Slack community channel Space Invaders

Installation

Install the package with:

npm install space-invoices --save

Usage

TOKEN and ACCOUNT_ID can be obtained by signing up for a develoepr account on our website: spaceinvoices.com

var SpaceInvoices = require('space-invoices');
var spaceInvoices = new SpaceInvoices('TOKEN');

Example usage of SpaceInvoices SDK for creating an Organization.

var accountId = 'ACCOUNT_ID';

spaceInvoices.organizations.create(accountId, {
  name: 'SpaceX', 
  country: "USA"
})
.then(function(organization) {
  console.log(organization);
})
.catch(function(error) {
  console.error(error);
});

Visit our website spaceinvoices.com

1.2.1

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.0

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.11

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.23

6 years ago

0.0.22

6 years ago

0.0.21

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago