0.5.4 • Published 6 years ago

place-node v0.5.4

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Place Node.js Library

A Node library for interfacing with the Place API

Installation

To install using npm:

npm install place-node

Basic usage

var place = require('place');

// set your api key
place.api_key = = 'private_key_6fsMi3GDxXg1XXSluNx1sLEd';

var account = place.Account.create({
  email: 'joe.schmoe@example.com',
  full_name: 'Joe Schmoe',
  user_type: 'payer'
}).then(function(account) {
  console.log(account.id)
});

Documentation

Read the docs