New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@agnostack/shipstation-request

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@agnostack/shipstation-request

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

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 27 Dec 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc