Package Exports
- space-invoices
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (space-invoices) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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 --saveUsage
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