npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

postmates-node

v1.0.3

Published

A node.js client for the Postmates API.

Downloads

15

Readme

postmates-node

A node.js client for the Postmates API.

Getting Started

Install the module:

$ npm install --save postmates

Create an instance of Postmates that you can use to interact with their endpoints:

var Postmates = require('postmates');
var postmates = new Postmates('yourCustomerId', 'yourAPIkey');

Examples

Get a quote:

var delivery = {
  pickup_address: "20 McAllister St, San Francisco, CA",
  dropoff_address: "101 Market St, San Francisco, CA"
};

postmates.quote(delivery, function(err, res) {
  console.log(res.body.fee); // 799
});

Create a delivery:

var delivery = {
  manifest: "a box of kittens",
  pickup_name: "The Warehouse",
  pickup_address: "20 McAllister St, San Francisco, CA",
  pickup_phone_number: "555-555-5555",
  pickup_business_name: "Optional Pickup Business Name, Inc.",
  pickup_notes: "Optional note that this is Invoice #123",
  dropoff_name: "Alice",
  dropoff_address: "101 Market St, San Francisco, CA",
  dropoff_phone_number: "415-555-1234",
  dropoff_business_name: "Optional Dropoff Business Name, Inc.",
  dropoff_notes: "Optional note to ring the bell",
  quote_id: "qUdje83jhdk"
};

postmates.new(delivery, function(err, res) {
  // `res.body`
});

Get delivery details:

postmates.get('qUdje83jhdk', function(err, res) {
  console.log(res.body.status); // "pickup"
});

Get all deliveries:

postmates.list('ongoing', function(err, res) {
  // `res.body` is an array of Delivery objects
});

Cancel a delivery:

postmates.cancel('qUdje83jhdk', function(err, res) {
  // `res.body`
});

API

new Postmates(customerId, apiKey)

Create a new Postmates instance that can get quotes, create deliveries, get delivery details, and cancel deliveries.

.quote(object, fn)

Get a Delivery Quote. Parameter object required:

{
  pickup_address: "20 McAllister St, San Francisco, CA",
  dropoff_address: "101 Market St, San Francisco, CA"
}

Sample DeliveryQuote response:

{
  kind: "delivery_quote",
  id: "dqt_qUdje83jhdk",
  created: "2014-08-26T10:04:03Z",
  expires: "2014-08-26T10:09:03Z",
  fee: 799,
  currency: "usd",
  dropoff_eta: "2014-08-26T12:15:03Z",
  duration: 60
}

.new(object, fn)

Create a Delivery. Parameter object required:

{
  manifest: "a box of kittens",
  pickup_name: "The Warehouse",
  pickup_address: "20 McAllister St, San Francisco, CA",
  pickup_phone_number: "555-555-5555",
  pickup_business_name: "Optional Pickup Business Name, Inc.",
  pickup_notes: "Optional note that this is Invoice #123",
  dropoff_name: "Alice",
  dropoff_address: "101 Market St, San Francisco, CA",
  dropoff_phone_number: "415-555-1234",
  dropoff_business_name: "Optional Dropoff Business Name, Inc.",
  dropoff_notes: "Optional note to ring the bell",
  quote_id: "qUdje83jhdk"
}

.get(deliveryId, fn)

Retrieve a Delivery. Parameter deliveryId required.

Sample Delivery response:

{
  kind: "delivery",
  created: "2014-08-26T10:04:03Z",
  updated: "2014-08-26T11:21:16Z",
  status: "pickup",
  complete: false,
  pickup_eta: "2014-08-26T10:16:00Z",
  dropoff_eta: "2014-08-26T10:29:00Z",
  dropoff_deadline: "2014-08-26T10:45:00Z",
  quote_id: "qUdje83jhdk",
  fee: 799,
  currency: "usd",
  manifest: {
    description: "10kg cardboard box",
  },
  pickup: {
    name: "The Warehouse",
    phone_number: "5555555555",
    address: "20 McAllister St, San Francisco, CA 94102",
    notes: "Invoice #123",
    location: {
      lat: 37.781116,
      lng: -122.412339
    },
  },
  dropoff: {
    name: "Alice Customer"
    phone_number: "4155555555",
    address: "101 Market St, San Francisco, CA 94105",
    notes: "Ring the bell, meow loudly.",
    location: {
      lat: 37.793274,
      lng: -122.395934
    },
  },
  courier: {
    name: "Robo Courier",
    location: {
        lat: 37.42291810,
        lng: -122.08542120
    },
    img_href: "https://images.postmates.com/06c9a53c-f89f-4eac-8861-60e34039d9ea/121.jpg"
  }
}

.list(filter, fn)

Retrieve all deliveries for a customer. Parameter filter is optional. An example of filter is 'ongoing', which would return a list of all deliveries with statuses 'ongoing'.

Sample response:

{ url: '/v1/customers/cus_JVGEOrY-m6BTMk/deliveries/',
  total_count: 2,
  object: 'list',
  data:
   [ { status: 'pickup',
       dropoff: [Object],
       updated: '2014-12-11T04:02:15Z',
       fee: 850,
       quote_id: 'dqt_K7ZMDY1grpRfX-',
       complete: false,
       courier: [Object],
       created: '2014-12-11T04:02:11Z',
       kind: 'delivery',
       manifest: [Object],
       currency: 'usd',
       pickup: [Object],
       dropoff_deadline: '2014-12-11T05:02:11Z',
       live_mode: false,
       pickup_eta: '2014-12-11T04:21:03Z',
       dropoff_eta: '2014-12-11T04:35:49Z',
       id: 'del_K7ZMFsDXNzKEdk' },
     { status: 'pickup',
       dropoff: [Object],
       updated: '2014-12-11T04:02:16Z',
       fee: 850,
       quote_id: 'dqt_K7ZLwn80kzO2Ok',
       complete: false,
       courier: [Object],
       created: '2014-12-11T04:01:13Z',
       kind: 'delivery',
       manifest: [Object],
       currency: 'usd',
       pickup: [Object],
       dropoff_deadline: '2014-12-11T05:01:13Z',
       live_mode: false,
       pickup_eta: '2014-12-11T04:12:00Z',
       dropoff_eta: '2014-12-11T04:26:46Z',
       id: 'del_K7ZM1OkQgoaBrF' } ],
  next_href: null }

.cancel(deliveryId, fn)

Cancel an ongoing delivery. Parameter deliveryId required.

License (MIT)

WWWWWW||WWWWWW
 W W W||W W W
      ||
    ( OO )__________
     /  |           \
    /o o|    MIT     \
    \___/||_||__||_|| *
         || ||  || ||
        _||_|| _||_||
       (__|__|(__|__|

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.