@agnostack/shipstation-request
![CircleCI](https://img.shields.io/circleci/project/github/agnostack/shipstation-request.svg?label=circleci)
🎮 Minimal ShipStation API request library for Node
Installation
yarn add @agnostack/shipstation-request
Quickstart (OAuth)
const { createClient } = require('@agnostack/shipstation-request');
const shipstation = new createClient({
public_key: '...',
secret_key: '...'
});
shipstation
.get('/carriers')
.then(console.log)
.catch(console.error);
shipstation
.post('/shipments/getrates', {
carrierCode: 'fedex',
serviceCode: null,
packageCode: null,
fromPostalCode: '78703',
toState: 'DC',
toCountry: 'US',
toPostalCode: '20500',
toCity: 'Washington',
weight: {
value: 3,
units: 'ounces'
},
dimensions: {
units: 'inches',
length: 7,
width: 5,
height: 6
},
confirmation: 'delivery',
residential: false
})
.then(console.log)
.catch(console.error);
shipstation
.get(`/orders`)
.then(console.log)
.catch(console.error);
Kitchen sink
const shipstation = new createClient({
public_key: '...',
secret_key: '...',
application: '...',
headers: {
}
});
The API provides you the ability to send various request headers that change the way data is stored or retrieved.
By default this library will encode all data as JSON, however you can customise this by setting your own Content-Type
header as an additional argument to get
, patch
, post
, put
and delete
.
Note: If you add the Content-Type
custom header to patch
, post
, put
or delete
you will need to encode data
yourself.
const shipstation = new createClient({
public_key: '...',
secret_key: '...'
});
const headers = {
'X-My-Header': 'custom'
};
shipstation
.get('/carriers', headers)
.then(console.log)
.catch(console.error);
Contact Adam Grohs @ agnoStack for any questions.