Available APIs
Authentication - OAuth2.0
Inventory
Items
Inbound Shipments
Labels
Receipt
Location
Tracking
Document
Get Order
The Orders API provides the capability of retrieving an order or list of orders, based on the query parameters provided in the request.
Swagger
swagger: '2.0'
info:
x-ibm-name: orders
title: Orders
version: 1.0.0
schemes:
- https
host: $(catalog.host)
basePath: /v1
consumes:
- application/json
produces:
- application/json
securityDefinitions:
oauth2:
type: oauth2
description: ''
flow: accessCode
authorizationUrl: 'https://<.........................>/fsc/oauth2/authorize'
scopes:
Fulfillment_Returns: ''
tokenUrl: 'https://<.........................>/fsc/oauth2/token'
Client_Secret:
type: apiKey
description: Enter Client Secret
in: header
name: X-IBM-Client-Secret
Client_Id:
type: apiKey
in: header
name: X-IBM-Client-Id
description: Enter Client ID
security:
- Client_Secret: []
Client_Id: []
oauth2:
- Fulfillment_Returns
x-ibm-configuration:
testable: true
enforced: true
phase: realized
paths:
/orders:
get:
responses:
200:
description: 200 OK
parameters:
- name: AccessToken
type: string
required: false
in: header
description: Enter the AccessToken, it is mandatory
- name: query_params
type: string
required: false
in: query
description: Enter all the query parameters
summary: Get Order
description: Retrieves an order or list of orders based on the query parameters
provided in the request.
Sample Request
• Retrieve all order details using fedexOrderId
https://<........>/api/v1/orders?fedexOrderId=0001-0007-H1230162729, 0001-0007-H1230162729
• Retrieve only basic order details of orders created on or after the timestamp provided
https://<........>/api/v1/orders?createdTimestamp=ge|2016-09-21T14:30:59-05:00&responseFilter=Basic
• Retrieve basic and fulfillment order details of orders that are either Shipped or Partially Shipped
https://<........>/api/v1/orders?orderStatus=Shipped,Partially Shipped&responseFilter=Basic,Fulfillment
Sample Response
Success Response
{
"requestIdentifier": "01749ea2-4b8f-4f3d-a9dc-f0b862a3d72e",
"transactionDate": "2017-01-20T15:12:54-05:00",
"order": [
{
"orderNumber": "70009",
"externalOrderNumber": "CAAMZ009",
"fedexOrderId": "0001-0007-H1230162729",
"orderDate": "2017-01-26T22:18:01-05:00",
"orderType": "B2C",
"shipMethod": "FSON",
"estimatedDeliveryDate": "2017-08-15",
"shipType": "PCL",
"orderStatus": "Shipped",
"cancelReasonCode": "",
"salesChannel": "Amazon",
"holdUntilDate": "2017-02-15T00:00:00-05:00",
"facility": "HFY",
"freightCost": 23.5,
"insuranceCost": 10,
"dutiesAndTaxes": 11.67,
"alternatePackaging": true,
"excludeCollateral": true,
"accessorial": [
"COA",
"SAT"
],
"dropShip": true,
"externalRefIds":[
{
"idKey": "marketplaceId",
"idValue": "453"
},
{
"idKey": "vendorId",
"idValue": "V234"
},
{
"idKey": "tradingPartnerId",
"idValue": "TP435"
}
],
"destinationAddress": {
"company": "John Inc.",
"name": "John Smith",
"addressLine1": "1020 Orchard st",
"addresLine2": null,
"city": "SACRAMENTO",
"stateCode": "CA",
"zipCode": "95814-5704",
"countryCode": "US",
"email": "test85@gmail.com",
"sendTrackingNumber": true,
"phoneNumber": "888-787-8888",
"shipToLocNumber": "433223",
"storeNumber": "545423"
},
"orderNote": [
{
"noteCode": "NOTES",
"noteText": "New Order"
},
{
"noteCode": "GIFT_FROM",
"noteText": "Johnson"
},
{
"noteCode": "GIFT_TO",
"noteText": "James"
},
{
"noteCode": "GIFT_MESSAGE",
"noteText": "Happy Birthday!!"
}
],
"line": [
{
"externalLineId": "001",
"sku": "003-003-0001111",
"unitPrice": "2.56",
"orderedQty": "2",
"orderedQtyUoM": "EA",
"vendorSku": "TGTMEN0111",
"upc": "614141000883",
"gtin": "50614141000994"
},
{
"externalLineId": "002",
"sku": "005-001-0001",
"unitPrice": "2.56",
"orderedQty": "2",
"orderedQtyUoM": "EA",
"vendorSku": "TGTMEN0133",
"upc": "614141000012",
"gtin": "10614141000029"
}
],
"fulfillment": [
{
"numberOfPallets": 1,
"trackingDetails": [
{
"carrier": "FedEx",
"trackNum": "719465507817",
"trackUrl": "https://www.fedex.com/apps/fedextrack/?action=track&tracknumbers=719465507817&cntry_code=us",
"shipDate": "2017-01-26T22:18:01-05:00",
"lpnNumber": "00021221321323",
"billOfLadingNumber": "BOL343434",
"carrierProNumber": "FX44445552",
"weight": 3.4,
"weightUoM": "lbs",
"originFacility": "HFY",
"originFacilityAddress": {
"addressLine1": "700 Commerce Pkwy W Dr",
"addresLine2": null,
"city": "Greenwood",
"stateCode": "IN",
"zipCode": "46143",
"countryCode": "US"
}
}
],
"line": [
{
"externalLineId": "001",
"sku": "003-003-0001111",
"shipQty": 1,
"shipQtyUoM": "EA",
"expirationDate": "2025-01-26T00:00:00-05:00",
"serialNumbers": []
},
{
"externalLineId": "002",
"sku": "003-003-0001",
"shipQty": 2,
"shipQtyUoM": "EA",
"expirationDate": "2025-01-26T00:00:00-05:00",
"serialNumbers": [
{
"serialNumber": "X00910181EW",
"quantity": 1
},
{
"serialNumber": " X00610155CE",
"quantity": 1
}
]
}
]
}
]
}
],
"paging": {
"previous": "https://<..........>/api/v1/orders?pageLimit=25&orderStatus=Shipped&prevTimeStamp=1398995568",
"next": "https://<..........>/api/v1/orders?pageLimit=25&orderStatus=Shipped&nextTimeStamp=1393899954"
}
}
OAuth 2.0
HTTP Headers | Description |
---|---|
Authorization | You must always provide the access token for authorization to access the API. HTTP-Header Value Authorization Bearer accessToken |
Origin | Origin URL. HTTP-Header Value Origin domain.com |
Custom authentication
HTTP Headers | Description |
---|---|
X-IBM-Client-Id | You must always provide in the HTTP header your API portal application's client ID (X-IBM-Client-Id) to access the API. HTTP-Header Value X-IBM-Client-Id ************ |
X-IBM-Client-Secret | You must always provide in the HTTP header your API portal application's client secret (X-IBM-Client-Secret) to access the API. HTTP-Header Value X-IBM-Client-Secret ************ |
AccessToken | Application Access Token |
Origin | Origin URL. HTTP-Header Value Origin domain.com |
Query Parameters
Parameter | Data Type | Description | Multiple values allowed | Required |
---|---|---|---|---|
fedexOrderId | String(Alphanumeric) | FedEx order ID. This parameter allows up to 25 order IDs. Special characters allowed: hyphen(-) |
Y | N |
salesChannel | String(Alphanumeric) | Sales channel Special characters allowed: hyphen(-) underscore(_) hash(#) brackets "(){}[]" space tab apostrophe(') |
N | N. Mandatory when orderNumber is provided |
orderNumber | String(Alphanumeric) | Channel order ID. This parameter allows up to 25 external order numbers. Special characters allowed: hyphen(-) underscore(_) hash(#) space tab |
Y | N. Mandatory when salesChannel is provided |
orderStatus | String | Status of the order Valid Values: Error, Held, Released, Partially Released, In Process, Backordered, Partially Shipped, Shipped, Canceled |
Y | N |
createdTimestamp | String | Time stamp(ISO8601 format) created by orders preceded by condition type delimited by pipe symbol. Format:ge|2016-09-21T14:30:59-05:00 Valid values for condition type: gt, lt, eq, ge, le. • gt (greater than) • lt (less than) • eq (equal to) • ge (greater than equal to) • le (less than equal to) |
N | N |
lastUpdatedTimestamp | String | Last updated time stamp (ISO8601 format) preceded by condition type delimited by pipe symbol. Format: ge|2016-09-21T14:30:59-05:00 Valid values for condition type: gt, lt, eq, ge, le. • gt (greater than) • lt (less than) • eq (equal to) • ge (greater than equal to) • le (less than equal to) |
N | N |
responseFilter | String | Default is All. Basic fields will be returned for all the response filters. Valid Values: All Basic Items Fulfillment |
Y | N |
pageLimit | Number | The number of records to be retrieved in each page. Allowed values: 1 to 100. Default is 50. | N | N |
prevTimeStamp | String | Time stamp to retrieve the previous page. Not applicable for initial request. | N | N |
nextTimeStamp | String | Time stamp to retrieve the next page. Not applicable for initial request. | N | N |
Response Attribute
Parameter | Data Type | Description | Filter Type |
---|---|---|---|
requestIdentifier | String | Request identifier | Basic |
transactionDate | String | Transaction date/time | Basic |
order[] | |||
orderNumber | String(Alphanumeric) | Channel order ID. Special characters allowed: hyphen(-) underscore(_) hash(#) space tab |
Basic |
externalOrderNumber | String | External Order Number that represents customer order number or marketplace order number. |
Basic |
fedexOrderId | String(Alphanumeric) | FedEx order ID Special characters allowed: hyphen(-) |
Basic |
orderDate | String | Order date | Basic |
orderType | String | Order type. | Basic |
shipMethod | String(Alphanumeric) | Shipment method | Basic |
estimatedDeliveryDate | String (UTC format) | Estimated date for the shipment to get delivered. | Basic |
estimatedShipDate | String | Estimated ship date/time for order. | Basic |
shipType | String | Shipment type | Basic |
orderStatus | String | Status of the order | Basic |
cancelReasonCode | String | The cancel reason code is applicable for canceled orders. Valid Values: CCBR, CCOM, CCOI, INIV, PMTF, PMTR, OTHR. CCBR - Customer Cancellation- Buyer's Remorse CCOM - Customer Cancellation- Ordered By Mistake CCOI - Customer Cancellation- Ordered Incorrect Product INIV - Insufficient Inventory PMTF - Payment Fraud PMTR - Payment Rejected OTHR - Other |
Basic |
salesChannel | String(Alphanumeric) | Sales channel Special characters allowed: apostrophe(') hyphen(-) underscore(_) hash(#) brackets "(){}[]" space tab |
Basic |
holdUntilDate | String(UTC format) | Date/time until the order will be held before releasing for fulfillment. | Basic |
facility | String(Alphanumeric) | Fulfillment facility provided during order creation to force fulfill the order Valid values: HFY, FCA. • HFY (- Greenwood, IN) • FCA (- Fontana, CA |
Basic |
freightCost | Number(Decimal) | Freight cost. Applicable for international orders | Basic |
insuranceCost | Number(Decimal) | Insurance cost. Applicable for international orders | Basic |
dutiesAndTaxes | Number(Decimal) | Duties and Taxes. Applicable for international orders | Basic |
alternatePackaging | Boolean | The bulk packaging flag. Valid Values: true or false. |
Basic |
excludeCollateral | Boolean | The flag to exclude collateral rules for the order. Valid Values: true or false. | Basic |
accessorial[] | String | Indicates accessorial information for the order. It can be an array of multiple codes, however, out of the signature options COA/COS, only one should be passed. Valid Values: COA, COS, SAT. • COA - Adult Signature Required • COS - Direct Signature Required • SAT - Saturday Delivery See below for accessorial eligibility with Shipment methods and Service Levels |
Basic |
dropShip | Boolean | Indicates whether this is a drop ship order. Valid Values: true or false. |
Basic |
order.externalRefIds[] | |||
idKey | String | Key for the Key/Value pair for the external reference Ids. Valid Values for idKey:vendorId,tradingPartnerId, marketplaceId. |
Basic |
idValue | String | Value for the Key/Value pair for the external reference Ids. | Basic |
order[].destinationAddress | |||
company | String | Name of the company. | Basic |
name | String | Name of the recipient Special characters allowed: apostrophe (') hyphen(-) brackets "(){}[]" space tab |
Basic |
addressLine1 | String | Address Line 1 Special characters allowed: apostrophe (') hyphen(-) brackets "(){}[]" space tab |
Basic |
addressLine2 | String | Address Line 2 Special characters allowed: apostrophe (') hyphen(-) brackets "(){}[]" space tab |
Basic |
city | String | City Special characters allowed: apostrophe (') hyphen(-) brackets "(){}[]" space tab |
Basic |
stateCode | String | State code | Basic |
zipCode | String(Alphanumeric) | Zip code Special characters allowed: hyphen(-) space For US: 5 numeric digits (or) 5 numeric digit, hyphen(-), 4 numeric digits |
Basic |
countryCode | String(Alphanumeric) | Country code | Basic |
deliveryType | String | Address delivery type | Basic |
String(Alphanumeric) | Recipient e-mail address Special characters allowed: at(@) hyphen(-) dot (.) underscore(_) plus (+) |
Basic | |
sendTrackingNumber | Boolean | Indicates whether E-mail id is present in order request. Valid Values: true or false. |
Basic |
phoneNumber | String(Alphanumeric) | Recipient phone number Special characters allowed: hyphen(-) open bracket "(" close bracket ")" dot (.) space tab plus (+) |
Basic |
shipToLocNumber | String | Ship to Location Number or Distribution Center Number that shipment is being sent to. | Basic |
storeNumber | String | Store Number or Ultimate Destination Number when a shipment is sent to a Distribution Center but needs to be marked / packed for a specific location. | Basic |
order[].orderNote[] | |||
noteCode | String | Code to indicate the type of information sent in the note text field Valid Values: NOTES GIFT_FROM GIFT_TO GIFT_MSG |
All |
noteText | String(Alphanumeric) | Text note for the respective note code associated with the order Special characters allowed: apostrophe (') hyphen(-) brackets "(){}[]" space tab |
All |
order[].line[] | |||
externalLineId | String | External line identifier | Items |
sku | String(Alphanumeric) | SKU of the product Special characters allowed: apostrophe(') dot(.) hash(#) hyphen(-) space tab underscore(_) |
Items |
unitPrice | Number | Product unit/retail price | Items |
orderedQty | Number | Ordered quantity | Items |
orderedQtyUoM | String | Ordered quantity unit of measure. | Items |
vendorSku | String | SKU identifier at vendor side. | Items |
upc | String | Universal product code for the item, if it is marked with a bar code. | Items |
gtin | String | Global Trade Item Number for the item. | Items |
order[].fulfillment[] | |||
numberOfPallets | Numeric | Number of Pallets in the order | Fulfillment |
order[].fulfillment[].trackingDetails[] | |||
carrier | String | Fulfillment carrier | Fulfillment |
trackNum | String | Fulfillment tracking number | Fulfillment |
trackUrl | String | Fulfillment tracking URL | Fulfillment |
shipDate | String | Fulfillment ship date | Fulfillment |
originFacility | String | Fulfillment origin facility. | Fulfillment |
lpnNumber | Numeric | LPN Number | Fulfillment |
billOfLadingNumber | String | Bill of Lading Number | Fulfillment |
carrierProNumber | String | Carrier Pro Number | Fulfillment |
weight | Numeric | Weight | Fulfillment |
weightUoM | String | Weight unit of measure. e.g. lbs | Fulfillment |
order[].fulfillment[].trackingDetails[].originFacilityAddress[] | |||
addressLine1 | String | Address line 1. Special characters allowed: apostrophe (') hyphen(-) brackets "(){}[]" space tab |
Basic |
addressLine2 | String | Address line 1. Special characters allowed: apostrophe (') hyphen(-) brackets "(){}[]" space tab |
Basic |
city | String | City. Special characters allowed: apostrophe (') hyphen(-) brackets "(){}[]" space tab |
Basic |
stateCode | String | State code. | Basic |
zipCode | String (Alphanumeric) | Postal code. Special characters allowed: Hyphen(-) Space For US: 5 numeric digits (or) 5 numeric digit, hyphen(-), 4 numeric digits |
Basic |
countryCode | String (Alphanumeric) | Country code. | Basic |
order[].fulfillment[].line[] | |||
externalLineId | String | External Order Line Identifier. | Fulfillment |
sku | String(Alphanumeric) | SKU of the product Special characters allowed: apostrophe(') dot(.) hash(#) hyphen(-) space tab underscore(_) |
Fulfillment |
shipQty | Number | Quantity shipped. | Fulfillment |
shipQtyUoM | String | Shipped quantity unit of measure. | |
expirationDate | String (UTC format) | Expiration date of the item | Fulfillment |
order[].fulfillment[].line[].serialNumbers[] | |||
serialNumber | String | Item serial numbers shipped. | Fulfillment |
quantity | Number | Quantity shipped | Fulfillment |
paging | |||
previous | String | Link to retrieve the previous page (if applicable) | |
next | String | Link to retrieve the next page (if applicable) | |
errors[] | |||
code | String | Code associated with the error | |
description | String | Description of the error |
HTTP Status Code
Code | Description |
---|---|
200 | OK - HTTP Response for successfully processed requests |
400 | Bad Request. |
403 | Forbidden |
404 | Not Found - Server couldn’t find anything matching request URI |
500 | Internal Server Error – Unable to process the request |
Error Code
Code | Description |
---|---|
ERR-SYS-0001 | Your request cannot be processed due to a system error. |
ERR-CMR-0001 | Input data validation failed. |
ERR-CMR-0002 | Authentication Failed. Invalid Access Token. |
ERR-CMR-0003 | Missing mandatory fields. |
ERR-ORD-0001 | Channel Order Id (orderNumber) is missing |
ERR-ORD-0002 | Order Date - Invalid format |
ERR-ORD-0003 | SKU is missing |
ERR-ORD-0004 | Order arrived with missing or invalid SKU |
ERR-ORD-0005 | Item quantity is missing |
ERR-ORD-0006 | Quantity value is invalid |
ERR-ORD-0007 | Retail price is invalid |
ERR-ORD-0008 | Name is missing |
ERR-ORD-0009 | Address Line 1 is missing |
ERR-ORD-0010 | City is missing |
ERR-ORD-0011 | State code is missing |
ERR-ORD-0012 | Zip code is missing |
ERR-ORD-0013 | Country code is missing |
ERR-ORD-0014 | Invalid e-mail address |
ERR-ORD-0015 | Missing phone number |
ERR-ORD-0016 | Invalid delivery type |
ERR-ORD-0017 | Shipping type is missing |
ERR-ORD-0018 | Invalid shipping type value |
ERR-ORD-0019 | Shipping method is missing |
ERR-ORD-0020 | Invalid shipping method value |
ERR-ORD-0021 | Client ID is missing |
ERR-ORD-0022 | Order already exists |
ERR-ORD-0023 | SKU does not exist |
ERR-ORD-0024 | Order does not exist |
ERR-ORD-0025 | Order cannot be updated. Order is being processed or already shipped |
ERR-ORD-0026 | Order cannot be canceled. Order is being processed or already shipped |
ERR-ORD-0027 | Cancel reason code is missing or invalid |
ERR-ORD-0028 | Order arrived with a non-US country code. International orders are not allowed through this API call |
ERR-ORD-0029 | Request cannot be processed with more than 25 orders in the filter. |
ERR-ORD-0030 | Sales channel and order number should be used together to filter the orders by Sales channel. |
ERR-ORD-0031 | FedEx order ID and Order Number cannot be used together to filter the orders. |
ERR-ORD-0032 | Time stamp filter is not in the required format. |
ERR-ORD-0033 | Time stamp and condition type should be used together to filter orders based on Timestamp |
ERR-ORD-0034 | Invalid Condition type value |
ERR-ORD-0035 | Invalid response filter value |
ERR-ORD-0037 | Order arrived with inactive SKU |
ERR-ORD-0043 | Order has an invalid address. |
ERR-ORD-0044 | Order address could not be validated. System will automatically reprocess in a few minutes. |
ERR-ORD-0046 | Connection is inactive |
ERR-ORD-0047 | Hold until date cannot be in the past |
ERR-ORD-0051 | Search criteria did not return any results |
ERR-ORD-0052 | Hold until date - Invalid format |
ERR-ORD-0054 | International shipping is not enabled |
ERR-ORD-0055 | Order contains some SKUs with missing information that is mandatory for International shipping |
ERR-ORD-0056 | Invalid facility code |
ERR-ORD-0057 | Invalid country code |
ERR-ORD-0058 | Freight costs are in invalid format |
ERR-ORD-0059 | Insurance costs are in invalid format |
ERR-ORD-0060 | Duties and taxes are in invalid format |
ERR-ORD-0061 | Invalid order type |
ERR-ORD-0062 | The destination email address is required when the sendTrackingNumber is true. |
ERR-ORD-0063 | Note code is invalid or missing. |
ERR-ORD-0064 | Invalid estimated delivery date. |
ERR-ORD-0065 | Invalid Accessorial code. |
ERR-ORD-0066 | Accessorial code not applicable for the Shipping method provided. |
ERR-ORD-0067 | Invalid Order type and Drop ship combination |
ERR-ORD-0068 | Amazon connection information missing or inactive |
ERR-ORD-0069 | Invalid Ordered Qty Unit of Measure. |
ERR-ORD-0070 | External order number is required for Seller Fulfilled Prime orders. |
ERR-ORD-0071 | Invalid External Reference Id. |
ERR-ORD-0072 | External Reference Id Value is missing. |
ERR-ORD-0073 | Invalid Ordered Qty Unit of Measure and Order Type combination. |
ERR-ORD-0074 | Invalid Ordered Qty Unit of Measure and Facility combination. |
Shipment Methods
Countries | Shipping Method | Code | Accessorials Eligible |
---|---|---|---|
United States | FedEx SmartPost | FXPP | - |
FedEx Home Delivery | FXHD | COA, COS | |
FedEx Ground | FXGD | COA, COS | |
FedEx Express Saver | FEXS | COA, COS | |
FedEx 2Day | F2DY | COA, COS, SAT | |
FedEx Priority Overnight | FPON | COA, COS, SAT | |
FedEx Standard Overnight | FSON | COA, COS | |
Amazon Seller Fulfilled Prime | ASFP | COA, COS, SAT | |
Canada | FedEx International Ground® | FV | COA, COS |
FedEx International Priority® | FIP | COA, COS, SAT | |
FedEx International Economy® | FIE | COA, COS | |
All countries except US and Canada | FedEx International Priority | FIP | COA, COS, SAT |
FedEx International Economy | FIE | COA, COS |
Shipment service levels
Service Level | Code | Default est. delivery days | Services Included | Accessorials Eligible |
---|---|---|---|---|
Value | VALU | 10 | FedEx Ground® FedEx Home Delivery® FedEx SmartPost® |
- |
Value with Signature | VALS | 10 | FedEx Ground FedEx Home Delivery |
COA, COS |
Standard | STRD | 5 | FedEx 2Day® FedEx Express Saver® FedEx Ground FedEx Home Delivery FedEx SmartPost FedEx Standard Overnight® |
- |
Standard with Signature | STRS | 5 | FedEx Ground FedEx Home Delivery FedEx Express Saver FedEx 2Day FedEx Standard Overnight |
COA, COS |
Expedited | EXPD | 3 | FedEx 2Day FedEx Express Saver FedEx Ground FedEx Home Delivery FedEx SmartPost FedEx Standard Overnight |
- |
Expedited with Signature | EXPS | 3 | FedEx Ground FedEx Home Delivery FedEx Express Saver FedEx 2Day FedEx SmartPost FedEx Standard Overnight |
COA, COS |
2 Day | 2DAY | 2 | FedEx 2Day FedEx Express Saver FedEx Ground FedEx Home Delivery FedEx Standard Overnight |
COA, COS |
Overnight | OVRN | 1 | FedEx Ground FedEx Home Delivery FedEx Standard Overnight |
COA, COS |
FEDEX WITH USPS | ||||
ValuewUSPS | FUVL | 10 | FedEx Ground FedEx Home Delivery FedEx SmartPost USPS First Class USPS Parcel Select USPS Priority Mail |
- |
ValuewUSPS with Signature | FUVS | 10 | FedEx Ground FedEx Home Delivery USPS Priority Mail USPS First Class USPS Parcel Select |
COA, COS |
StandardwUSPS | FUST | 5 | FedEx 2Day FedEx Express Saver FedEx Ground FedEx Home Delivery FedEx SmartPost FedEx Standard Overnight USPS First Class USPS Parcel Select USPS Priority Mail |
COA, COS |
StandardwUSPS with Signature | FUSS | 5 | FedEx Ground FedEx Home Delivery FedEx Express Saver FedEx 2Day FedEx Standard Overnight USPS Priority Mail USPS First Class USPS Parcel Select |
COA, COS |
ExpeditedwUSPS | FUED | 3 | FedEx 2Day FedEx Express Saver FedEx Ground FedEx Home Delivery FedEx SmartPost FedEx Standard Overnight USPS First Class USPS Parcel Select USPS Priority Mail |
- |
ExpeditedwUSPS with Signature | FUES | 3 | FedEx Ground FedEx Home Delivery FedEx Express Saver FedEx 2Day FedEx Standard Overnight USPS Priority Mail USPS First Class USPS Parcel Select FedEx 2Day |
COA, COS |
2 DaywUSPS | FU2D | 2 | FedEx 2Day FedEx Express Saver FedEx Ground FedEx Home Delivery FedEx Standard Overnight USPS Parcel Select USPS Priority Mail USPS Priority Mail Express |
COA, COS |
OvernightwUSPS | FUON | 1 | FedEx Ground FedEx Home Delivery FedEx Standard Overnight USPS Priority Mail Express |
COA, COS |
USPS | ||||
USPSStandard | USTD | 10 | USPS First Class USPS Parcel Select USPS Priority Mail |
COA, COS |
USPSExpedited | UEXD | 3 | USPS First Class USPS Parcel Select USPS Priority Mail USPS Priority Mail Express |
COA, COS |
USPS2 Day | U2DY | 2 | USPS Parcel Select USPS Priority Mail USPS Priority Mail Express |
COA, COS |
USPSOvernight | UOVN | 1 | USPS Priority Mail Express | COA, COS |