Socket
Socket
Sign inDemoInstall

@agnostack/shipstation-request

Package Overview
Dependencies
4
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @agnostack/shipstation-request

Please contact agnoStack via info@agnostack.com for any questions


Version published
Weekly downloads
6
increased by200%
Maintainers
1
Install size
452 kB
Created
Weekly downloads
 

Readme

Source

@agnostack/shipstation-request

npm version semantic-release code style: prettier CircleCI

🎮 Minimal ShipStation API request library for Node

Installation

yarn add @agnostack/shipstation-request  # npm install @agnostack/shipstation-request

Quickstart (OAuth)

const { createClient } = require('@agnostack/shipstation-request');
// import { createClient } from '@agnostack/shipstation-request'

// NOTE: You'll need to generate an API Key and API Secret under
//   Account Settings > Account > API Settings > Generate New API Keys
const shipstation = new createClient({
  public_key: '...', // Shipstation API Key
  secret_key: '...' // Shipstation API Secret
});

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: {
    // ...
  }
});

Custom headers per request

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.

Keywords

FAQs

Last updated on 27 Dec 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc