1sc-api
Version:
Node API for 1 Shopping Cart
30 lines (20 loc) • 553 B
Markdown
# 1SC-API
Node API for 1 Shopping Cart
### Get Started
```javascript
// One Shopping Cart api
var OneShopClass=require('1sc-api');
// Get instance of api -- passing it access credentials
var OneShopApi = new OneShopClass({
merchantId: 'YOUR MERCHANT ID',
merchantKey: 'YOUR MERCHANT KEY',
apiUri: 'https://www.mcssl.com'
});
// Implements Promises
api.getClientById(123456)
.then(function(clientXML){
// parse clientXML with your favorite xml to json converter
},function(err){
// handle error
});
```