Skip to content

Version 2.2.0

Latest
Compare
Choose a tag to compare
@ericingram ericingram released this 14 Apr 17:56
· 66 commits to master since this release
  • Request data with auto resolving promises (top level keys)
client.get('/orders', {
  account_id: client.get('/accounts/{email}/id', {
    email: 'customer@example.com'
  })
}).then(function(categories) {
  // ...
});