Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 582 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 582 Bytes

Place Node.js Library

A Node library for interfacing with the Place API

Installation

To install using npm:

npm install place-api

Basic usage

var place = require('place-api');

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

var account = place.Account.create({
  email: '[email protected]',
  full_name: 'Joe Schmoe',
  user_type: 'payer'
}).then(function(account) {
  console.log(account.id)
});

Documentation

Read the docs