Socket
Socket
Sign inDemoInstall

space-invoices

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

space-invoices

A NodeJS wrapper module for Space Invoices API


Version published
Weekly downloads
39
increased by14.71%
Maintainers
1
Weekly downloads
 
Created
Source

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

API_KEY and ACCOUNT_ID can be obtained in our Slack channel by joining here: joinslack.spaceinvoices.com

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

Example usage of SpaceInvoices SDK for creating an Organization.

var accountId = 'ACCOUNT_ID';

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

Visit our website spaceinvoices.com

Keywords

FAQs

Package last updated on 15 Feb 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc