Skip to content

Instantly share code, notes, and snippets.

@kevinsproles
Last active March 5, 2020 05:57
Show Gist options
  • Select an option

  • Save kevinsproles/7d7425c6ea7a84695758fe3e67133b4a to your computer and use it in GitHub Desktop.

Select an option

Save kevinsproles/7d7425c6ea7a84695758fe3e67133b4a to your computer and use it in GitHub Desktop.
/***************************************************************************/
// import the order into ShipStation
/***************************************************************************/
const shipstationAPI = require('node-shipstation');
const shipstation = new shipstationAPI(
SHIPSTATION_API_KEY, // api key
SHIPSTATION_API_SECRET // api secret
);
shipstation.addOrder(orderInShipStationFormat, function(err, res, body) {
console.log("err",err);
console.log("body",body); // success
});
/***************************************************************************/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment