Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gswalden/ups-service-codes
Translation table for UPS service codes and their descriptions
https://github.com/gswalden/ups-service-codes
nodejs npm-module ups
Last synced: 8 days ago
JSON representation
Translation table for UPS service codes and their descriptions
- Host: GitHub
- URL: https://github.com/gswalden/ups-service-codes
- Owner: gswalden
- License: isc
- Created: 2016-01-18T04:51:37.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-18T05:12:58.000Z (almost 9 years ago)
- Last Synced: 2024-10-03T06:38:19.283Z (about 1 month ago)
- Topics: nodejs, npm-module, ups
- Language: JavaScript
- Size: 3.91 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![npm version](https://badge.fury.io/js/ups-service-codes.svg)](https://badge.fury.io/js/ups-service-codes)
[![Build status](https://travis-ci.org/gswalden/ups-service-codes.svg?branch=master)](https://travis-ci.org/gswalden/ups-service-codes)### Install
```sh
npm install --save ups-service-codes
```### Use
```js
var upsCodes = require('ups-service-codes');
console.log(upsCodes['03']); // UPS Ground
console.log(upsCodes.isValid('03')); // true
console.log(upsCodes.isValid('00')); // false
```### Reference table
| Code | Description
| ---- | -----------
| Domestic
| 14 | UPS Next Day Air Early
| 01 | UPS Next Day Air
| 13 | UPS Next Day Air Saver
| 59 | UPS 2nd Day Air A.M.
| 02 | UPS 2nd Day Air
| 12 | UPS 3 Day Select
| 03 | UPS Ground
| International |
| 11 | UPS Standard
| 07 | UPS Worldwide Express
| 54 | UPS Worldwide Express Plus
| 08 | UPS Worldwide Expedited
| 65 | UPS Worldwide Saver
| 96 | UPS Worldwide Express Freight
| 82 | UPS Today Standard
| 83 | UPS Today Dedicated Courier
| 84 | UPS Today Intercity
| 85 | UPS Today Express
| 86 | UPS Today Express Saver
| 70 | UPS Access Point Economy### Source
Retrieved from [UPS Developer Kit](https://www.ups.com/upsdeveloperkit) on January 15, 2016.