nikolenkoanton92 / node_waitlisted

Node.js module that implements the offical waitlisted api
3 stars 2 forks source link

node_waitlisted

Node.js module that implements the offical waitlisted api

Installation

The easiest way to install node_waitlisted is with npm

npm install waitlisted

Usage

Setup Waitlisted to know the URL to use to manage your reservations:


var waitlisted = new Waitlisted('Your domain from Waitlisted.co')

API

waitlisted.create(email,name,refcode,cb)

Create a Reservation

waitlisted.create('example@example.com','Waitlisted Co', function(err,data){})

waitlisted.get(email,cb)

Get a Specific Reservation

waitlisted.get('example@example.com', function(err,data){})