Last active
March 5, 2020 05:57
-
-
Save kevinsproles/7d7425c6ea7a84695758fe3e67133b4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /***************************************************************************/ | |
| // 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