Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ups-shipping-api

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ups-shipping-api

An easy to use and well tested interface for interacting with UPS api.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

UPS Shipping Api

This is an unofficial node.js package that makes interacting with the UPS api easy. Uses the UPS json endpoints.

Usage

const UPS = require('ups-shipping-api');
const ups = new UPS({
    access_key : "an_access_key",
    username : "a_user_name",
    password : "a_password"
})

var promise_rates = ups.retreive_rates(shipment);

You can create a access_key, username, and password at the UPS Api website.

Example

var test_shipment = {
    shipper : {
        address : {
            country_code : "US",
            postal_code : 42512,
        },
    },
    ship_to : {
        address : {
            country_code : "US",
            postal_code : 42512,
        },
    },
    package : {
        weight : 21, // the weight of the package
        dimensions : {
            length : 2,
            width : 2,
            height : 2,
        }
    }
}
var rates = await ups.retreive_rates(test_shipment);

Methods

retreive_rates

    var promise_rates = ups.retreive_rates(shipment);

Objects and Properties

The api uses several objects (e.g., shipment, package, etc) throughout. Their definitions with required and optional properties are below.

Construction Options

{
    // mandatory
    access_key: STRING,
    username: STRING,
    password: STRING,

    // optional
    live : BOOLEAN, // defaults to false; runs requests in UPS sandbox mode
    unit_system : STRING, // select from ["imperial", "metric"]; defaults to "imperial";
}

Shipment Attributes

{
    shipper : ENDPOINT,  // the person the shipment is from
    ship_to :  ENDPOINT, // the person the shipment is for
    package: PACKAGE // the package you are sending
}

Endpoint Attributes

{
    // mandatory
    address : ADDRESS,

    // optional
    name : STRING, // UPS uses up to 36 char
    shipper_number : STRING, // required for negotiated rates
}

Package Attributes

{
    // mandatory
    weight: STRING/FLOAT,
    dimensions: {
        length: STRING/FLOAT,
        width: STRING/FLOAT,
        height: STRING/FLOAT,
    }
}

Address Attributes

{
    // mandatory
    country_code : STRING, // select from ["US", ...(TODO)]
    postal_code : STRING/INT,

    // optional
    lines : [ // a list of address lines
        STRING, ...
    ],
    city : STRING,
    state : STRING,
    province : STRING,
}

Package Attributes

{
    // mandatory
    weight : STRING/FLOAT, // the weight of the package
    dimensions : {
        length : STRING/FLOAT,
        width : STRING/FLOAT,
        height : STRING/FLOAT,
    }
}

Keywords

FAQs

Package last updated on 28 Jun 2018

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