Tutorial: Purchase a Shipment From a Rate

How to get rates for a shipment, get any additional inputs when required, and purchase a shipment.

API Version: v2

Prerequisites

To complete this tutorial, you will need:

  • Enrollment in an eligible program.
  • A selling-partner account if you are an Amazon seller or are working with an Amazon seller to create and manage shipments.
  • Authorization from the selling-partner for whom you are making calls. Refer to Authorizing Selling Partner API applications for more information.

Step 1. Get rates for a shipment

Getting the rates for a shipment returns the eligible shipping services for a given address, package specifications and/or pickup slot, and provides a delivery promise consisting of a pickup time range and a delivery window. If a pickup slot was not specified in the request by providing a shipDate value, the current date will be used to return the next eligible slot.

When fulfilling an Amazon order, the Amazon order number must be provided in the channel details of the API request. For each item in the package, the Order Item ID should be sent in the itemIdentifier attribute, which can be obtained using either the getOrder or getOrderItems operation from the Orders Selling Partner API.

Amazon Order

"channelDetails": { "channelType": "AMAZON", "amazonOrderDetails": { "orderId": "912-1061508-5843035" } }

Note: At this time, each shipment is limited to a single package. Packages are always input, stored, and output in list form. You should write your API integration to work with lists of packages. This will keep your integration forward-compatible with multi-package shipments should the single package limitation be removed.

Request

To get the rates for a shipment, call the getRates operation, passing the following parameters:

NameDescriptionRequired
shipToThe address where the shipment will be delivered. For Amazon orders, shipTo information is pulled directly from the Amazon order.
Type: Address
Conditional
shipFromThe address where the package will be picked up.
Type: Address
Yes
returnToThe address where the package will be returned if it cannot be delivered.
Type: Address
No
shipDateThe ship date and time (the requested pickup). This defaults to the current date and time.
Type: string (date-time)
No
shipperInstructionThis field describe shipper instruction
Type: ShipperInstruction
No
packagesA list of packages to be shipped and package details.
Type: PackageList
Yes
valueAddedServicesA collection of supported value-added services.
Type: ValueAddedServiceDetails
No
taxDetailsA list of tax detail information.
Type: TaxDetailList
No
channelDetailsShipment source channel related information.
Type: ChannelDetails
Yes
clientReferenceDetailsObject to pass additional information about the MCI Integrator shipperType: List of ClientReferenceDetail
Type: ClientReferenceDetails
No
shipmentTypeObject to pass shipment type
Type: ShipmentType
No
destinationAccessPointDetailsObject to pass Accesspoint id for counter delivery
Type: DestinationAccessPointDetails
No

Request header parameters

NameDescriptionRequired
x-amzn-shipping-business-idAmazon shipping business to assume for this request. The default is AmazonShipping_UK.
Type: enum (X-amzn-shipping-business-id)
Yes
x-amzn-access-tokenAmazon shipping request tokenYes

Response

A successful response includes the following:

NameDescriptionSchema
payloadThe payload for the getRates operation.GetRatesResult

Sample API Request

POST https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments/rates x-amzn-shipping-business-id: [x-amzn-shipping-business-id](https://developer-docs.amazon.com/amazon-shipping/docs/frequently-asked-questions#which-x-amzn-shipping-business-id-to-use-as-request-header-while-calling-shipping-v2-api) x-amz-access-token: Atza|IwEBIGorlXXX

API Request and Response examples for US (AmazonShipping_US)

POST https://sellingpartnerapi-na.amazon.com/shipping/v2/shipments/rates x-amzn-shipping-business-id: AmazonShipping_US x-amz-access-token: Atza|IwEBIGorlXXX

With "channelType": "EXTERNAL"

{ "shipTo": { "name": "Test Customer", "companyName": "Test Company", "addressLine1": "410 Terry Avenue North", "stateOrRegion": "WA", "postalCode": "98109", "city": "SEATTLE", "countryCode": "US", "email": "amazon@company.com", "phoneNumber": "1 206 2661000" }, "shipFrom": { "name": "Test Warehouse", "addressLine1": "22001 84th Avenue S", "stateOrRegion": "WA", "postalCode": "98032", "city": "Kent", "countryCode": "US", "email": "amazon@company.com", "phoneNumber": "1 206 2661000" }, "packages": [ { "dimensions": { "length": 3.14, "width": 3.14, "height": 3.14, "unit": "INCH" }, "weight": { "unit": "POUND", "value": 3.14159 }, "items": [ { "quantity": 1, "weight": { "unit": "POUND", "value": 1.14159 } }, { "quantity": 1, "weight": { "unit": "POUND", "value": 1.14159 } } ], "insuredValue": { "unit": "USD", "value": 29.98 }, "packageClientReferenceId": "abcd" } ], "channelDetails": { "channelType": "EXTERNAL" } }
{ "payload": { "ineligibleRates": [], "rates": [ { "availableValueAddedServiceGroups": [], "benefits": null, "billedWeight": { "unit": "POUND", "value": 7 }, "carrierId": "AMZN_US", "carrierName": "Amazon Shipping", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-13T03:00:00Z", "start": "2025-03-13T03:00:00Z" }, "pickupWindow": { "end": "2025-03-11T21:00:00Z", "start": "2025-03-11T18:30:00Z" } }, "rateId": "e4c2b19d4f8dcf556f4da8d5e32cd479b1378f81ff87844cfc27e71b50ecb1741741632442525", "rateItemList": null, "requiresAdditionalInputs": false, "serviceId": "std-us-swa-mfn", "serviceName": "Amazon Shipping Ground", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ false ], "supportedPageLayouts": [ "DEFAULT" ] } ], "size": { "length": 6, "unit": "INCH", "width": 4 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ false ], "supportedPageLayouts": [ "DEFAULT" ] } ], "size": { "length": 6, "unit": "INCH", "width": 4 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ false ], "supportedPageLayouts": [ "DEFAULT" ] } ], "size": { "length": 6, "unit": "INCH", "width": 4 } } ], "totalCharge": { "unit": "USD", "value": 9.63 } } ], "requestToken": "amzn1.rq.96992407455062.100" } }

With "channelType": "AMAZON"

{ "shipTo": { "name": "Test Customer", "companyName": "Test Company", "addressLine1": "410 Terry Avenue North", "stateOrRegion": "WA", "postalCode": "98109", "city": "SEATTLE", "countryCode": "US", "email": "amazon@company.com", "phoneNumber": "1 206 2661000" }, "shipFrom": { "name": "Test Warehouse", "addressLine1": "22001 84th Avenue S", "stateOrRegion": "WA", "postalCode": "98032", "city": "Kent", "countryCode": "US", "email": "amazon@company.com", "phoneNumber": "1 206 2661000" }, "packages": [ { "dimensions": { "length": 12.99, "width": 9.45, "height": 5.91, "unit": "INCH" }, "weight": { "unit": "POUND", "value": 0.5 }, "items": [ { "itemValue": { "unit": "USD", "value": 13.99 }, "description": "Platinum Plated 925 Engagement Gemstone Jewellery Size T", "itemIdentifier": "110257142088641", "quantity": 1, "weight": { "unit": "POUND", "value": 0.5 } } ], "insuredValue": { "unit": "USD", "value": 13.99 }, "packageClientReferenceId": "Any-unique-identifier" } ], "channelDetails": { "channelType": "AMAZON", "amazonOrderDetails": { "orderId": "111-8922865-1841805" } } }
{ "payload": { "ineligibleRates": [ { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "4PX_GLOBAL_EXPRESS_PRI_LI", "serviceName": "AMZ-4PX Global Express Priority-Li" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "4PX_GLOBAL_EXPRESS_STD_LI", "serviceName": "AMZ-4PX-PostLink Clothing" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "4PX_GLOBAL_EXPRESS_STD_NOLI", "serviceName": "AMZ-4PX Global Express Standard - NOLi" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "4PX_GLOBAL_EXPRESS_STD_SPCL", "serviceName": "AMZ-4PX Global Express Standard Special" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "4PX_POSTLINK_ECO_REG_MAIL_LI", "serviceName": "AMZ-4PX-PostLink Economic Registered Mail-Li" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "4PX_POSTLINK_ECO_REG_MAIL_NOLI", "serviceName": "AMZ-4PX-PostLink Economic Registered Mail-NOLi" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "4PX_POSTLINK_ECO_SRM_LI", "serviceName": "AMZ-4PX-PostLink Super Economy-NOLi" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "4PX_POSTLINK_PRI_REG_MAIL_LI", "serviceName": "AMZ-4PX-PostLink Priority Registered Mail-Li" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "4PX_POSTLINK_PRI_REG_MAIL_NOLI", "serviceName": "AMZ-4PX-PostLink Priority Registered Mail-NOLi" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "4PX_POSTLINK_STD_REG_MAIL_LI", "serviceName": "AMZ-4PX-PostLink Standard Registered Mail-Li" }, { "carrierId": "4PX", "carrierName": "4PX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "4PX_POSTLINK_STD_REG_MAIL_NOLI", "serviceName": "AMZ-4PX-PostLink Standard Registered Mail-NOLi" }, { "carrierId": "CHINA_POST", "carrierName": "China Post", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "CHINA_POST_AIRMAIL", "serviceName": "China Post Ordinary Airmail" }, { "carrierId": "CHINA_POST", "carrierName": "China Post", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "CHINA_POST_E_EMS", "serviceName": "China Post e-EMS" }, { "carrierId": "CHINA_POST", "carrierName": "China Post", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "CHINA_POST_E_PACKET", "serviceName": "China Post ePacket" }, { "carrierId": "CHINA_POST", "carrierName": "China Post", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "CHINA_POST_REGISTERED_AIRMAIL", "serviceName": "China Post Registered Airmail" }, { "carrierId": "DELHIVERY_IN", "carrierName": "DELHIVERY", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "DELHIVERYEXPORTS_EXPRESS", "serviceName": "Delhivery Exports Express" }, { "carrierId": "DHLECCN", "carrierName": "DHL eCommerce", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "DHLECCN_PLG", "serviceName": "DHL Parcel International Direct Goods" }, { "carrierId": "DHLECCN", "carrierName": "DHL eCommerce", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "DHLECCN_PLT", "serviceName": "DHL Parcel International Direct Standard" }, { "carrierId": "DHLMX", "carrierName": "DHL", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "DHLMX_PTP_PACKAGE_EXPRESS", "serviceName": "DHL Express International" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_EXPRESS_SAVER", "serviceName": "FedEx Express Saver®" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_GROUND", "serviceName": "FedEx Ground®" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_PRIORITY_OVERNIGHT_ONE_RATE", "serviceName": "FedEx Priority Overnight® One Rate" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_PRI_OVERNIGHT_SAT", "serviceName": "FedEx Priority Overnight® (Saturday)" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_PRI_OVERN_ONE_R_SAT", "serviceName": "FedEx Priority Overnight® One Rate (Saturday)" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_SECOND_DAY", "serviceName": "FedEx 2Day®" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_SECOND_DAY_AM_ONE_RATE", "serviceName": "FedEx 2Day®A.M. One Rate" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_SECOND_DAY_SAT", "serviceName": "FedEx 2Day® (Saturday)" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_SEC_DAY_ONE_RATE_SAT", "serviceName": "Fedex 2Day® One Rate (Saturday)" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_SMARTPOST", "serviceName": "FedEx Ground Economy" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "FEDEX_PTP_STANDARD_OVERNIGHT", "serviceName": "FedEx Standard Overnight®" }, { "carrierId": "HNC", "carrierName": null, "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "HNC_VNUS_DIRECT", "serviceName": "HNC VNUS Direct" }, { "carrierId": "IPS", "carrierName": "India Post", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "ServiceProvider is part of the list of service providers excluded by service consumer" } ], "serviceId": "INDIAPOST_INT_AIR_PARCEL", "serviceName": "International Air Parcel" }, { "carrierId": "IPS", "carrierName": "India Post", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "ServiceProvider is part of the list of service providers excluded by service consumer" } ], "serviceId": "INDIAPOST_INT_EMS_MERCH", "serviceName": "International EMS Merchandise" }, { "carrierId": "IPS", "carrierName": "India Post", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "ServiceProvider is part of the list of service providers excluded by service consumer" } ], "serviceId": "INDIAPOST_INT_REGD_SMALL_PACKET", "serviceName": "International Registered Small Packet" }, { "carrierId": "IPS", "carrierName": "India Post", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "ServiceProvider is part of the list of service providers excluded by service consumer" } ], "serviceId": "INDIAPOST_INT_TRACKED_PACKET", "serviceName": "India Post International Tracked Packet" }, { "carrierId": "ONTRAC", "carrierName": "OnTrac", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Seller is not allowed to purchase requested logistic service." } ], "serviceId": "ONTRAC_MFN_GROUND", "serviceName": "OnTrac Ground" }, { "carrierId": "SELF_DELIVERY", "carrierName": "Self Delivery", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Seller is not registered to use this shipping service." } ], "serviceId": "SELF_DELIVERY_PTP_GROUND", "serviceName": "SELF_DELIVERY_PTP_GROUND" }, { "carrierId": "SF_EXPRESS_US", "carrierName": "SF Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "SF_INTL_US_EXDCD", "serviceName": "SF_INTL_US_EXDCD_Non Battery" }, { "carrierId": "SF_EXPRESS_US", "carrierName": "SF Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "SF_INTL_US_EXPCD", "serviceName": "SF International E-Commerce Express Clothing(no battery)" }, { "carrierId": "SHIPROCKET", "carrierName": "ShiprocketX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Seller is not allowed to purchase requested logistic service." } ], "serviceId": "SHIPROCKET_EXPRESS", "serviceName": "SRX Premium Plus" }, { "carrierId": "SHIPROCKET", "carrierName": "ShiprocketX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Seller is not allowed to purchase requested logistic service." } ], "serviceId": "SHIPROCKET_PREMIUM", "serviceName": "SRX Premium" }, { "carrierId": "SHIPROCKET", "carrierName": "ShiprocketX", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Seller is not allowed to purchase requested logistic service." } ], "serviceId": "SHIPROCKET_PRIORITY", "serviceName": "SRX Priority" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "UPS_EXPEDITED_INTL", "serviceName": "UPS Worldwide Expedited" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "UPS_EXPRESS_INTL", "serviceName": "UPS Worldwide Express" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "UPS_PTP_2ND_DAY_AIR_SAT", "serviceName": "UPS 2nd Day Air® (Saturday)" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "UPS_PTP_NEXT_DAY_AIR_SAT", "serviceName": "UPS Next Day Air® (Saturday)" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package weight is below the minimum supported weight.Package weight is 0.49999994488443444LB, min package weight is 0.9999998897688689LB." } ], "serviceId": "UPS_PTP_SUREPOST_BPM", "serviceName": "UPS SurePost BPM" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package weight is below the minimum supported weight.Package weight is 0.49999994488443444LB, min package weight is 0.9999998897688689LB." } ], "serviceId": "UPS_PTP_SUREPOST_H", "serviceName": "UPS SurePost (1 lb or greater)" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "UPS_PTP_SUREPOST_L", "serviceName": "UPS SurePost (less than 1 lb)" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package weight is below the minimum supported weight.Package weight is 0.49999994488443444LB, min package weight is 0.9999998897688689LB." } ], "serviceId": "UPS_PTP_SUREPOST_MEDIA", "serviceName": "UPS SurePost Media" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "UPS_SAVER_INTL", "serviceName": "UPS Worldwide Saver" }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "UPS_STANDARD_INTL", "serviceName": "UPS Standard" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_EXP_CUSTOMS", "serviceName": "USPS Priority Mail Express® (Customs)" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package dimensions failed to satisfy the constraints. Package length, width, height are 32.9946CM, 24.003CM, 15.0114CM; min length, width, height are 0.0CM, 0.0CM, 0.0CM; max length, width, height are 40.64CM, 40.64CM, 40.64CM." } ], "serviceId": "USPS_PTP_EXP_FRE", "serviceName": "USPS Priority Mail Express® Flat Rate Envelope" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_EXP_FRE_INTL", "serviceName": "USPS Priority Mail Express International Flat Rate Envelope" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_EXP_INTL", "serviceName": "USPS Priority Mail Express International" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package dimensions failed to satisfy the constraints. Package length, width, height are 32.9946CM, 24.003CM, 15.0114CM; min length, width, height are 0.0CM, 0.0CM, 0.0CM; max length, width, height are 45.72CM, 45.72CM, 45.72CM." } ], "serviceId": "USPS_PTP_EXP_LFRE", "serviceName": "USPS Priority Mail Express Legal Flat Rate Envelope" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package dimensions failed to satisfy the constraints. Package length, width, height are 32.9946CM, 24.003CM, 15.0114CM; min length, width, height are 0.0CM, 0.0CM, 0.0CM; max length, width, height are 40.64CM, 40.64CM, 40.64CM." } ], "serviceId": "USPS_PTP_EXP_PFRE", "serviceName": "USPS Priority Mail Express Padded Flat Rate Envelope" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_FC_CUSTOMS", "serviceName": "USPS Ground Advantage (Customs)" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_FC_INTL", "serviceName": "USPS First Class International" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "USPS_PTP_GAC", "serviceName": "USPS Ground Advantage Cubic" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The selected shipping service cannot be purchased; please try a different selection from the choices in the eligible shipping services list." } ], "serviceId": "USPS_PTP_GAH", "serviceName": "USPS Ground Advantage (1 - 70 lb)" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_PRI_CUSTOMS", "serviceName": "USPS Priority Mail® (Customs)" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package dimensions failed to satisfy the constraints. Package length, width, height are 32.9946CM, 24.003CM, 15.0114CM; min length, width, height are 0.0CM, 0.0CM, 0.0CM; max length, width, height are 40.64CM, 40.64CM, 40.64CM." } ], "serviceId": "USPS_PTP_PRI_FRE", "serviceName": "USPS Priority Mail® Flat Rate Envelope" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_PRI_FRE_INTL", "serviceName": "USPS Priority Mail International Flat Rate Envelope" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_PRI_INTL", "serviceName": "USPS Priority Mail International" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package dimensions failed to satisfy the constraints. Package length, width, height are 32.9946CM, 24.003CM, 15.0114CM; min length, width, height are 0.0CM, 0.0CM, 0.0CM; max length, width, height are 30.48CM, 30.48CM, 13.97CM." } ], "serviceId": "USPS_PTP_PRI_LFRB_CUSTOMS", "serviceName": "USPS Priority Mail® Large Flat Rate Box (Customs)" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_PRI_LFRB_INTL", "serviceName": "USPS Priority Mail International Large Flat Rate Box" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package dimensions failed to satisfy the constraints. Package length, width, height are 32.9946CM, 24.003CM, 15.0114CM; min length, width, height are 0.0CM, 0.0CM, 0.0CM; max length, width, height are 45.72CM, 45.72CM, 45.72CM." } ], "serviceId": "USPS_PTP_PRI_LFRE", "serviceName": "USPS Priority Mail Legal Flat Rate Envelope" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_PRI_MFRB_INTL", "serviceName": "USPS Priority Mail International Flat Rate Box" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package dimensions failed to satisfy the constraints. Package length, width, height are 32.9946CM, 24.003CM, 15.0114CM; min length, width, height are 0.0CM, 0.0CM, 0.0CM; max length, width, height are 40.64CM, 40.64CM, 40.64CM." } ], "serviceId": "USPS_PTP_PRI_PFRE", "serviceName": "USPS Priority Mail Padded Flat Rate Envelope" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_PRI_RA", "serviceName": "USPS Priority Mail Regional Rate Box A" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_PRI_RB", "serviceName": "USPS Priority Mail Regional Rate Box B" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Package dimensions failed to satisfy the constraints. Package length, width, height are 32.9946CM, 24.003CM, 15.0114CM; min length, width, height are 0.0CM, 0.0CM, 0.0CM; max length, width, height are 22.06625CM, 13.81125CM, 4.445CM." } ], "serviceId": "USPS_PTP_PRI_SFRB", "serviceName": "USPS Priority Mail® Small Flat Rate Box" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." } ], "serviceId": "USPS_PTP_PRI_SFRB_INTL", "serviceName": "USPS Priority Mail International Small Flat Rate Box" }, { "carrierId": "WANB", "carrierName": "WanB", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "WANB_ECONOMY_SEMI_TRACK", "serviceName": "WANB Economy Semi track" }, { "carrierId": "WANB", "carrierName": "WanB", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "WANB_ECONOMY_TRACK", "serviceName": "Wanb Clothing Special Line" }, { "carrierId": "WANB", "carrierName": "WanB", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "WANB_EXPEDITED_TRACK_GENERAL", "serviceName": "WANB Expedited Track-General" }, { "carrierId": "WANB", "carrierName": "WanB", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "WANB_EXPEDITED_TRACK_SPECIAL", "serviceName": "WANB Expedited Track-Special" }, { "carrierId": "WANB", "carrierName": "WanB", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "WANB_SMART_TRACK_GENERAL", "serviceName": "WANB Smart Track-General" }, { "carrierId": "WANB", "carrierName": "WanB", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "WANB_SMART_TRACK_SENSITIVE", "serviceName": "WANB Smart Track-Sensitive" }, { "carrierId": "WANB", "carrierName": "WanB", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "WANB_SMART_TRACK_SPECIAL", "serviceName": "WANB Smart Track-Special" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_AIR_ECONOMY_MAIL_GENERAL", "serviceName": "Yanwen YW Air Economy Mail - General Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_AIR_ECONOMY_MAIL_SPECIAL", "serviceName": "Yanwen YW Air Economy Mail - Special Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_AIR_EPAKCET_GENERAL", "serviceName": "Yanwen Air Softline - General Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_AIR_EPAKCET_SPECIAL", "serviceName": "Yanwen_Air_Comestic_Direct line\n" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_AIR_REGISTER_MAIL_GENERAL", "serviceName": "Yanwen YW Air Registered Mail - General Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_AIR_REGISTER_MAIL_SPECIAL", "serviceName": "Yanwen YW Air Registered Mail - Special Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_AIR_TRACK_PACKET_GENERAL", "serviceName": "Yanwen YW Air Tracked Packet - General Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_AIR_TRACK_PACKET_SPECIAL", "serviceName": "Yanwen YW Air Tracked Packet - Special Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_EXPRESS_SL_P", "serviceName": "Yanwen Express Special Line - P" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_EXPRESS_SL_T", "serviceName": "Yanwen Express Special Line - T" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_UNTRACKED_PACKET_GENERAL", "serviceName": "Yanwen YW Untracked Packet - General Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YW_UNTRACKED_PACKET_SPECIAL", "serviceName": "Yanwen YW Untracked Packet - Special Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "Y_POST_ORDINARY_MAIL_GENERAL", "serviceName": "Yanwen Y-Post Ordinary Mail - General Cargo" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "Y_POST_ORDINARY_MAIL_SPECIAL", "serviceName": "Yanwen-Standard-CADDP-Special\n" }, { "carrierId": "YANWEN", "carrierName": "Yanwen", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "Y_POST_REGISTER_MAIL_SPECIAL", "serviceName": "Yanwen-Standard-CADDP-General\n" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "YUN_CA_DIRECT_LINE_DDP", "serviceName": "Yun Express CA Direct Line DDP" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "Not an eligible ship method for this order. Please check carrier's requirements for this ship method." } ], "serviceId": "YUN_CA_GENERAL_DIRECT_LINE_DDP", "serviceName": "Yun Express CA general cargo Direct Line DDP" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YUN_CLOTHING_DIRECT_LINE", "serviceName": "Yun Express Global Clothing Direct Line" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YUN_COSMETIC_DIRECT_LINE", "serviceName": "Yun Express Global Cosmetic Direct Line" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YUN_DIRECT_LINE_DDP_TRACKED", "serviceName": "Yun Express Global Direct Line -Tracked" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YUN_DIRECT_LINE_DDP_UNTRACK", "serviceName": "YunExpress Global Wedding Line" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YUN_DIRECT_LINE_DDU_TRACKED", "serviceName": "YunExpress General Cargo Direct Line DDP-Tracked" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YUN_STD_GENERAL_GLOBAL_DIRECT_LINE", "serviceName": "Yun Express Standard General Cargo Direct Line-Tracked" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YUN_STD_GLOBAL_DIRECT_LINE", "serviceName": "Yun Express Standard Global Direct Line-Tracked" }, { "carrierId": "YUN", "carrierName": "Yun Express", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This shipping service does not deliver from the given source address to the destination address." } ], "serviceId": "YUN_US_DIRECT_LINE", "serviceName": "Yun Express US Direct Line" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The shipping service is not available for the products in the order." } ], "serviceId": "USPS_PTP_MM", "serviceName": "USPS Media Mail" }, { "carrierId": "USPS", "carrierName": "USPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "The shipping service is not available for the products in the order." } ], "serviceId": "USPS_PTP_BPM", "serviceName": "USPS Bound Printed Matter" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This ship method is not eligible for this order" } ], "serviceId": "FEDEX_PTP_SECOND_DAY_AM", "serviceName": "FedEx 2Day®A.M." }, { "carrierId": "UPS", "carrierName": "UPS", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This ship method is not eligible for this order" } ], "serviceId": "UPS_PTP_NEXT_DAY_AIR", "serviceName": "UPS Next Day Air®" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This ship method is not eligible for this order" } ], "serviceId": "FEDEX_PTP_PRIORITY_OVERNIGHT", "serviceName": "FedEx Priority Overnight®" }, { "carrierId": "FEDEX", "carrierName": "FedEx", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "This ship method is not eligible for this order" } ], "serviceId": "FEDEX_PTP_STANDARD_OVERNIGHT_ONE_RATE", "serviceName": "FedEx Standard Overnight® One Rate" } ], "rates": [ { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 3.7 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "DELIVERY_CONFIRMATION", "name": "Delivery confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "USPS", "carrierName": "USPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-12T06:59:59Z", "start": "2025-03-12T06:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "086e4fa6-4e02-495f-839e-25cc521e6a6f", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "OVERSIZE_SURCHARGE", "rateItemNameLocalization": "Oversize Surcharge", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 7.49 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "TRANSACTION_FEE", "rateItemNameLocalization": "Transaction Fee", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "SURCHARGE", "rateItemNameLocalization": "EPH", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "HIDDEN_POSTAGE", "rateItemNameLocalization": "Hidden postage", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 3.7 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DELIVERY_CONFIRMATION", "rateItemNameLocalization": "Delivery confirmation", "rateItemType": "INCLUDED" } ], "requiresAdditionalInputs": false, "serviceId": "USPS_PTP_PRI", "serviceName": "USPS Priority Mail®", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "RIGHT", "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 7.49 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Pickup", "groupId": "VAS_GROUP_ID_PICKUP", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 0.0 }, "id": "CARRIER_PICKUP_CHARGE", "name": "Carrier Pickup" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "AMZN_US", "carrierName": "Amazon Shipping", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-09T04:00:00Z", "start": "2025-03-09T04:00:00Z" }, "pickupWindow": { "end": "2025-03-05T22:00:00Z", "start": "2025-03-05T19:30:00Z" } }, "rateId": "0f6b5c95-b6ef-40ec-b847-32ca9dd0c666", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "CARRIER_PICKUP_CHARGE", "rateItemNameLocalization": "Carrier Pickup", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "TRACKING_CHARGE", "rateItemNameLocalization": "Tracking Charge", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 8.53 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 1.36 }, "rateItemID": "FUEL_SURCHARGE", "rateItemNameLocalization": "Fuel Surcharge", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DELIVERY_AREA_SURCHARGE", "rateItemNameLocalization": "Delivery Area Surcharge", "rateItemType": "MANDATORY" } ], "requiresAdditionalInputs": false, "serviceId": "std-us-swa-mfn", "serviceName": "Amazon Shipping Ground", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [ 203, 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 203, 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [ 203, 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } } ], "totalCharge": { "unit": "USD", "value": 9.89 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 5.9 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "NO_CONFIRMATION", "name": "No confirmation" }, { "cost": { "unit": "USD", "value": 7.1 }, "id": "ADULT_SIGNATURE_CONFIRMATION", "name": "Adult signature confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "UPS", "carrierName": "UPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-07T07:59:59Z", "start": "2025-03-07T07:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "112ba62b-9d9e-4749-ac5c-0ee7a5740a09", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 44.49 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "IMPLIED_LIABILITY", "rateItemNameLocalization": "Included liability", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 5.9 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "NO_CONFIRMATION", "rateItemNameLocalization": "No confirmation", "rateItemType": "INCLUDED" }, { "rateItemCharge": { "unit": "USD", "value": 7.1 }, "rateItemID": "ADULT_SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Adult signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" } ], "requiresAdditionalInputs": false, "serviceId": "UPS_PTP_NEXT_DAY_AIR_SAVER", "serviceName": "UPS Next Day Air Saver®", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "RIGHT", "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 44.49 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 3.7 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "DELIVERY_CONFIRMATION", "name": "Delivery confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "USPS", "carrierName": "USPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-12T06:59:59Z", "start": "2025-03-12T06:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "fabe407a-f401-4043-b043-a34de748e6c2", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 15.8 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "TRANSACTION_FEE", "rateItemNameLocalization": "Transaction Fee", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "HIDDEN_POSTAGE", "rateItemNameLocalization": "Hidden postage", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 3.7 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DELIVERY_CONFIRMATION", "rateItemNameLocalization": "Delivery confirmation", "rateItemType": "INCLUDED" } ], "requiresAdditionalInputs": false, "serviceId": "USPS_PTP_PRI_MFRB", "serviceName": "USPS Priority Mail Flat Rate Box", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "RIGHT", "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 15.8 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 3.7 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "DELIVERY_CONFIRMATION", "name": "Delivery confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "USPS", "carrierName": "USPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-12T06:59:59Z", "start": "2025-03-12T06:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "7aebf0ff-6da9-4346-a213-3c0e7e557cb4", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 22.65 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "TRANSACTION_FEE", "rateItemNameLocalization": "Transaction Fee", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "HIDDEN_POSTAGE", "rateItemNameLocalization": "Hidden postage", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 3.7 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DELIVERY_CONFIRMATION", "rateItemNameLocalization": "Delivery confirmation", "rateItemType": "INCLUDED" } ], "requiresAdditionalInputs": false, "serviceId": "USPS_PTP_PRI_LFRB", "serviceName": "USPS Priority Mail® Large Flat Rate Box", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "RIGHT", "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 22.65 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 3.7 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "DELIVERY_CONFIRMATION", "name": "Delivery confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "USPS", "carrierName": "USPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-12T06:59:59Z", "start": "2025-03-12T06:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "1820a88a-1fe5-4357-83ce-cff6eea73639", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "OVERSIZE_SURCHARGE", "rateItemNameLocalization": "Oversize Surcharge", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 4.57 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "TRANSACTION_FEE", "rateItemNameLocalization": "Transaction Fee", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "SURCHARGE", "rateItemNameLocalization": "EPH", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "HIDDEN_POSTAGE", "rateItemNameLocalization": "Hidden postage", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 3.7 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DELIVERY_CONFIRMATION", "rateItemNameLocalization": "Delivery confirmation", "rateItemType": "INCLUDED" } ], "requiresAdditionalInputs": false, "serviceId": "USPS_PTP_GAL", "serviceName": "USPS Ground Advantage (less than 1lb)", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "RIGHT", "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 4.57 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 5.9 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "NO_CONFIRMATION", "name": "No confirmation" }, { "cost": { "unit": "USD", "value": 7.1 }, "id": "ADULT_SIGNATURE_CONFIRMATION", "name": "Adult signature confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "UPS", "carrierName": "UPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-08T07:59:59Z", "start": "2025-03-08T07:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "4ac0fbf0-b4f6-4841-993a-bb4a306988b3", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 16.32 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "IMPLIED_LIABILITY", "rateItemNameLocalization": "Included liability", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 5.9 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "NO_CONFIRMATION", "rateItemNameLocalization": "No confirmation", "rateItemType": "INCLUDED" }, { "rateItemCharge": { "unit": "USD", "value": 7.1 }, "rateItemID": "ADULT_SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Adult signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" } ], "requiresAdditionalInputs": false, "serviceId": "UPS_PTP_2ND_DAY_AIR", "serviceName": "UPS 2nd Day Air®", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "RIGHT", "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 16.32 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 5.9 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "NO_CONFIRMATION", "name": "No confirmation" }, { "cost": { "unit": "USD", "value": 7.1 }, "id": "ADULT_SIGNATURE_CONFIRMATION", "name": "Adult signature confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "UPS", "carrierName": "UPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-12T06:59:59Z", "start": "2025-03-12T06:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "bbfe848b-23f2-4ec9-80cc-b8b3f1045f57", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 10.65 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "IMPLIED_LIABILITY", "rateItemNameLocalization": "Included liability", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 5.9 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "NO_CONFIRMATION", "rateItemNameLocalization": "No confirmation", "rateItemType": "INCLUDED" }, { "rateItemCharge": { "unit": "USD", "value": 7.1 }, "rateItemID": "ADULT_SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Adult signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" } ], "requiresAdditionalInputs": false, "serviceId": "UPS_PTP_3DAY_SELECT", "serviceName": "UPS 3 Day Select®", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "RIGHT", "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 10.65 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 7.15 }, "id": "ADULT_SIGNATURE_CONFIRMATION", "name": "Adult signature confirmation" }, { "cost": { "unit": "USD", "value": 7.15 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "NO_CONFIRMATION", "name": "No confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "FEDEX", "carrierName": "FedEx", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-12T06:59:59Z", "start": "2025-03-12T06:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "4142508a-698f-4d3e-8e36-320e2b93ad6e", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 12.75 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "IMPLIED_LIABILITY", "rateItemNameLocalization": "Included liability", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 7.15 }, "rateItemID": "ADULT_SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Adult signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 7.15 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "NO_CONFIRMATION", "rateItemNameLocalization": "No confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" } ], "requiresAdditionalInputs": false, "serviceId": "FEDEX_PTP_EXPRESS_SAVER_ONE_RATE", "serviceName": "FedEx Express Saver® One Rate", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": false, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 12.75 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 8.45 }, "id": "ADULT_SIGNATURE_CONFIRMATION", "name": "Adult signature confirmation" }, { "cost": { "unit": "USD", "value": 8.45 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "NO_CONFIRMATION", "name": "No confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "FEDEX", "carrierName": "FedEx", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-08T07:59:59Z", "start": "2025-03-08T07:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "a48b8ca8-b5b8-4082-9889-de6e9b50262e", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 8.45 }, "rateItemID": "ADULT_SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Adult signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 18.97 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "IMPLIED_LIABILITY", "rateItemNameLocalization": "Included liability", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 8.45 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "NO_CONFIRMATION", "rateItemNameLocalization": "No confirmation", "rateItemType": "OPTIONAL" } ], "requiresAdditionalInputs": false, "serviceId": "FEDEX_PTP_HOME_DELIVERY", "serviceName": "FedEx Home Delivery®", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": false, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 18.97 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 5.9 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "NO_CONFIRMATION", "name": "No confirmation" }, { "cost": { "unit": "USD", "value": 7.1 }, "id": "ADULT_SIGNATURE_CONFIRMATION", "name": "Adult signature confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "UPS", "carrierName": "UPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-08T07:59:59Z", "start": "2025-03-08T07:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "7deaf345-9a2d-459c-9942-9ec5db86fdae", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 7.84 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "IMPLIED_LIABILITY", "rateItemNameLocalization": "Included liability", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 5.9 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "NO_CONFIRMATION", "rateItemNameLocalization": "No confirmation", "rateItemType": "INCLUDED" }, { "rateItemCharge": { "unit": "USD", "value": 7.1 }, "rateItemID": "ADULT_SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Adult signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" } ], "requiresAdditionalInputs": false, "serviceId": "UPS_PTP_GND", "serviceName": "UPS® Ground", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "RIGHT", "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 7.84 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 3.7 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "DELIVERY_CONFIRMATION", "name": "Delivery confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "USPS", "carrierName": "USPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-12T06:59:59Z", "start": "2025-03-12T06:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "8313efa5-8b8a-4792-8681-273f37051a68", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 13.9 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "TRANSACTION_FEE", "rateItemNameLocalization": "Transaction Fee", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "HIDDEN_POSTAGE", "rateItemNameLocalization": "Hidden postage", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 3.7 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DELIVERY_CONFIRMATION", "rateItemNameLocalization": "Delivery confirmation", "rateItemType": "INCLUDED" } ], "requiresAdditionalInputs": false, "serviceId": "USPS_PTP_PRI_CUBIC", "serviceName": "USPS Priority Mail Cubic®", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 13.9 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 0.0 }, "id": "NO_CONFIRMATION", "name": "No confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "UPS", "carrierName": "UPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-09T07:59:59Z", "start": "2025-03-09T07:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "aa6324c5-778b-460b-8cb5-1a2f8059abe0", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 6.76 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "IMPLIED_LIABILITY", "rateItemNameLocalization": "Included liability", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "NO_CONFIRMATION", "rateItemNameLocalization": "No confirmation", "rateItemType": "INCLUDED" } ], "requiresAdditionalInputs": false, "serviceId": "UPS_PTP_GROUNDSAVER", "serviceName": "UPS Ground Saver", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } } ], "totalCharge": { "unit": "USD", "value": 6.76 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 0.0 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "DELIVERY_CONFIRMATION", "name": "Delivery confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "USPS", "carrierName": "USPS", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-09T07:59:59Z", "start": "2025-03-09T07:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "c4b92af3-4857-425f-ae4b-7183ebbc057d", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "OVERSIZE_SURCHARGE", "rateItemNameLocalization": "Oversize Surcharge", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 33.4 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "IMPLIED_LIABILITY", "rateItemNameLocalization": "Included liability", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "TRANSACTION_FEE", "rateItemNameLocalization": "Transaction Fee", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "HIDDEN_POSTAGE", "rateItemNameLocalization": "Hidden postage", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "SURCHARGE", "rateItemNameLocalization": "EPH", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DELIVERY_CONFIRMATION", "rateItemNameLocalization": "Delivery confirmation", "rateItemType": "INCLUDED" } ], "requiresAdditionalInputs": false, "serviceId": "USPS_PTP_EXP", "serviceName": "USPS Priority Mail Express®", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "RECEIPT" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] }, { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "RIGHT", "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 33.4 } }, { "availableValueAddedServiceGroups": [ { "groupDescription": "Confirmation", "groupId": "VAS_GROUP_ID_CONFIRMATION", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "USD", "value": 7.15 }, "id": "SIGNATURE_CONFIRMATION", "name": "Signature confirmation" }, { "cost": { "unit": "USD", "value": 0.0 }, "id": "NO_CONFIRMATION", "name": "No confirmation" }, { "cost": { "unit": "USD", "value": 7.15 }, "id": "ADULT_SIGNATURE_CONFIRMATION", "name": "Adult signature confirmation" } ] } ], "benefits": { "excludedBenefits": [], "includedBenefits": [ "CLAIMS_PROTECTED", "OTDR_PROTECTED" ] }, "billedWeight": null, "carrierId": "FEDEX", "carrierName": "FedEx", "paymentType": null, "promise": { "deliveryWindow": { "end": "2025-03-08T07:59:59Z", "start": "2025-03-08T07:59:59Z" }, "pickupWindow": { "end": null, "start": null } }, "rateId": "f1448224-1c19-439f-b14b-96731b2240c3", "rateItemList": [ { "rateItemCharge": { "unit": "USD", "value": 12.75 }, "rateItemID": "BASE_RATE", "rateItemNameLocalization": "Base Rate", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "IMPLIED_LIABILITY", "rateItemNameLocalization": "Included liability", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "DECLARED_VALUE", "rateItemNameLocalization": "Declared value", "rateItemType": "MANDATORY" }, { "rateItemCharge": { "unit": "USD", "value": 7.15 }, "rateItemID": "SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Signature confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 0.0 }, "rateItemID": "NO_CONFIRMATION", "rateItemNameLocalization": "No confirmation", "rateItemType": "OPTIONAL" }, { "rateItemCharge": { "unit": "USD", "value": 7.15 }, "rateItemID": "ADULT_SIGNATURE_CONFIRMATION", "rateItemNameLocalization": "Adult signature confirmation", "rateItemType": "OPTIONAL" } ], "requiresAdditionalInputs": false, "serviceId": "FEDEX_PTP_SECOND_DAY_ONE_RATE", "serviceName": "Fedex 2Day® One Rate", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6.0, "unit": "INCH", "width": 4.0 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": false, "name": "PACKSLIP" }, { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 11.0, "unit": "INCH", "width": 8.5 } } ], "totalCharge": { "unit": "USD", "value": 12.75 } } ], "requestToken": "amzn1.rq.8bb6a0a2-372f-4297-b9c6-6c9f59798617.101" } }

API Request and Response examples for UK (AmazonShipping_UK)

POST https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments/rates x-amzn-shipping-business-id: AmazonShipping_UK x-amz-access-token: Atza|IwEBIGorlXXX

With "channelType": "EXTERNAL"

{ "shipTo": { "name": "Test User", "addressLine1": "12, Bath Park Road", "addressLine2": "Meersbrook", "postalCode": "OXXX 6XB", "city": "SHEFFIELD", "countryCode": "GB", "email": "amazon@company.com", "phoneNumber": "9999999999" }, "shipFrom": { "name": "Test shipper", "addressLine1": "Plane Tree Crescent", "postalCode": "SXX1 9FP", "city": "Feltham", "countryCode": "GB", "email": "amazon-shipper@company.com", "phoneNumber": "9999999999" }, "packages": [ { "dimensions": { "length": 3.14, "width": 3.14, "height": 3.14, "unit": "INCH" }, "weight": { "unit": "KILOGRAM", "value": 3.14159 }, "items": [ { "quantity": 1, "weight": { "unit": "KILOGRAM", "value": 1.14159 } }, { "quantity": 1, "weight": { "unit": "KILOGRAM", "value": 1.14159 } } ], "insuredValue": { "unit": "GBP", "value": 29.98 }, "packageClientReferenceId": "abcd" } ], "channelDetails": { "channelType": "EXTERNAL" } }
{ "payload": { "requestToken": "amzn1.94b6c96d-68ab-4fe6-a278-b85835b7e475", "rates": [ { "rateId": "e1b7cf2d1516d8c5343a087e10a5a2261ff36b83bdb5a91c6ce51b19586ed9861507200580943", "carrierId": "AMZN_UK", "carrierName": "Amazon Shipping", "serviceId": "SWA-UK-PRIME-PREM", "serviceName": "Amazon Shipping One Day", "promise": { "pickupWindow": { "startTime": "2017-10-13T19:51:23Z", "endTime": "2017-10-13T19:51:23Z" }, "deliveryWindow": { "startTime": "2017-10-14T19:51:23Z", "endTime": "2017-10-14T19:51:23Z" } }, "supportedDocumentSpecifications": [ { "format": "PNG", "size": { "width": 4, "length": 6, "unit": "INCH" }, "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedPageLayouts": [ "DEFAULT" ], "supportedFileJoiningOptions": [ false ], "supportedDocumentDetails": [ { "name": "LABEL", "isMandatory": true } ] } ] }, { "format": "ZPL", "size": { "width": 4, "length": 6, "unit": "INCH" }, "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedPageLayouts": [ "DEFAULT" ], "supportedFileJoiningOptions": [ false ], "supportedDocumentDetails": [ { "name": "LABEL", "isMandatory": true } ] } ] }, { "format": "PDF", "size": { "width": 4, "length": 6, "unit": "INCH" }, "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedPageLayouts": [ "DEFAULT" ], "supportedFileJoiningOptions": [ false ], "supportedDocumentDetails": [ { "name": "LABEL", "isMandatory": true } ] } ] } ], "availableValueAddedServiceGroups": null, "totalCharge": { "unit": "GBP", "value": 4.76 }, "billedWeight": { "value": 1, "unit": "KILOGRAM" }, "requiresAdditionalInputs": false }, { "rateId": "e9305a93989acce639f625842b64708f9daaf73bb87cc0cbf11f31f3c944b9761507200580943", "carrierId": "AMZN_UK", "carrierName": "Amazon Shipping", "serviceId": "SWA-UK-ECON", "serviceName": "Amazon Shipping Standard", "promise": { "pickupWindow": { "startTime": "2017-10-13T19:51:23Z", "endTime": "2017-10-13T23:51:23Z" }, "deliveryWindow": { "startTime": "2017-10-18T19:51:23Z", "endTime": "2017-10-18T19:51:23Z" } }, "supportedDocumentSpecifications": [ { "format": "PNG", "size": { "width": 4, "length": 6, "unit": "INCH" }, "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedPageLayouts": [ "DEFAULT" ], "supportedFileJoiningOptions": [ false ], "supportedDocumentDetails": [ { "name": "LABEL", "isMandatory": true } ] } ] }, { "format": "ZPL", "size": { "width": 4, "length": 6, "unit": "INCH" }, "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedPageLayouts": [ "DEFAULT" ], "supportedFileJoiningOptions": [ false ], "supportedDocumentDetails": [ { "name": "LABEL", "isMandatory": true } ] } ] }, { "format": "PDF", "size": { "width": 4, "length": 6, "unit": "INCH" }, "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedPageLayouts": [ "DEFAULT" ], "supportedFileJoiningOptions": [ false ], "supportedDocumentDetails": [ { "name": "LABEL", "isMandatory": true } ] } ] } ], "availableValueAddedServiceGroups": null, "totalCharge": { "unit": "GBP", "value": 3.72 }, "billedWeight": { "value": 1, "unit": "KILOGRAM" }, "requiresAdditionalInputs": false } ], "ineligibleRates": [] } }

With "channelType": "AMAZON"

{ "shipTo": { "name": "Test User", "addressLine1": "12, Bath Park Road", "addressLine2": "Meersbrook", "postalCode": "OXXX 6XB", "city": "SHEFFIELD", "countryCode": "GB", "email": "amazon@company.com", "phoneNumber": "9999999999" }, "shipFrom": { "name": "Test Shipper", "addressLine1": "Plane Tree Crescent", "postalCode": "S8XA 9XX", "city": "Feltham", "countryCode": "GB", "email": "amazon-shipper@company.com", "phoneNumber": "9999999999" }, "packages": [ { "dimensions": { "length": 12.99, "width": 9.45, "height": 5.91, "unit": "INCH" }, "weight": { "unit": "KILOGRAM", "value": 0.5 }, "items": [ { "itemValue": { "unit": "GBP", "value": 13.99 }, "description": "Platinum Plated 925 Sterling Silver Engagement Gemstone Jewellery Size T", "itemIdentifier": "69783225326731", "quantity": 1, "weight": { "unit": "KILOGRAM", "value": 0.01 } } ], "insuredValue": { "unit": "GBP", "value": 13.99 }, "packageClientReferenceId": "SW17271398" } ], "channelDetails": { "channelType": "AMAZON", "amazonOrderDetails": { "orderId": "026-1671542-1523528" } } }
{ "payload": { "ineligibleRates": [ { "carrierId": "CHINA_POST", "carrierName": "China Post", "ineligibilityReasons": [ { "code": "UNKNOWN", "message": "It is not an eligible ship method for this order." }, { "code": "UNKNOWN", "message": "The Carrier Terms and Conditions were not accepted" } ], "serviceId": "CHINA_POST_AIRMAIL", "serviceName": "China Post Ordinary Airmail" } ], "rates": [ { "availableValueAddedServiceGroups": [ { "groupDescription": "Pickup", "groupId": "VAS_GROUP_ID_PICKUP", "isRequired": true, "valueAddedServices": [ { "cost": { "unit": "GBP", "value": 0 }, "id": "CARRIER_PICKUP_CHARGE", "name": "Carrier Pickup" } ] } ], "carrierId": "AMZN_UK", "carrierName": "Amazon Shipping", "promise": { "deliveryWindow": { "endTime": "2021-10-20T19:00:00Z", "startTime": "2021-10-20T19:00:00Z" }, "pickupWindow": { "endTime": "2021-10-18T17:30:00Z", "startTime": "2021-10-18T17:00:00Z" } }, "rateId": "0193bfed-6bc1-449c-8504-02a431732d55", "requiresAdditionalInputs": false, "serviceId": "prime-premium-uk-mfn", "serviceName": "Amazon Shipping One-Day Tracked", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6, "unit": "INCH", "width": 4 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ true ], "supportedPageLayouts": [ "LEFT" ] } ], "size": { "length": 6, "unit": "INCH", "width": 4 } } ], "totalCharge": { "unit": "GBP", "value": 2.53 } } ], "requestToken": "amzn1.rq.e15983c1-3ab7-40b5-bd9f-46cb56605bc7.101" } }

API Request and Response examples with tax details for India (AmazonShipping_IN)

POST https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments/rates x-amzn-shipping-business-id: AmazonShipping_IN x-amz-access-token: Atza|IwEBIGorlXXX

With "channelType": "EXTERNAL"

{ "shipTo": { "name": "Pavan", "addressLine1": "Shop No 4", "addressLine2": "Sec No 11", "postalCode": "500032", "city": "Hyderabad", "countryCode": "IN", "email": "gunjikah+in12@amazon.com", "phoneNumber": "9999999999" }, "shipFrom": { "name": "A1", "addressLine1": "1141,Maker Chambers V", "addressLine2": "J Bajaj Road, Nariman Point", "postalCode": "500032", "city": "Hyderabad", "countryCode": "IN", "email": "cct-prod-test@amazon.com", "phoneNumber": "9999999999" }, "packages": [ { "dimensions": { "length": 3.14, "width": 3.14, "height": 3.14, "unit": "INCH" }, "weight": { "unit": "KILOGRAM", "value": 3.14159 }, "items": [ { "quantity": 1, "weight": { "unit": "KILOGRAM", "value": 1.14159 }, "isHazmat": false }, { "quantity": 1, "weight": { "unit": "KILOGRAM", "value": 1.14159 } } ], "insuredValue": { "unit": "INR", "value": 29.98 }, "isHazmat": false, "packageClientReferenceId": "abcd" } ], "valueAddedServices": { "collectOnDelivery": { "amount": { "value": 10, "unit": "INR" } } }, "taxDetails": [ { "taxType": "GST", "taxRegistrationNumber": "87878" } ], "channelDetails": { "channelType": "EXTERNAL" } }
{ "payload": { "ineligibleRates": [], "rates": [ { "availableValueAddedServiceGroups": [ { "groupId": "CollectOnDelivery", "isRequired": true, "valueAddedServices": [ { "id": "CollectOnDelivery", "name": "CollectOnDelivery" } ] } ], "billedWeight": { "unit": "KILOGRAM", "value": 3.1 }, "carrierId": "ATS", "carrierName": "Amazon Shipping", "promise": { "deliveryWindow": { "endTime": "2021-12-06T18:29:00Z", "startTime": "2021-12-05T18:30:00Z" }, "pickupWindow": { "endTime": "2021-12-02T10:45:00Z", "startTime": "2021-12-02T08:30:00Z" } }, "rateId": "d62d932beec4bad24ea4990a5aad657096efc4f363449e78f061215b000318d61638430994664", "requiresAdditionalInputs": false, "serviceId": "SWA-IN-OA", "serviceName": "Amazon Shipping Standard", "supportedDocumentSpecifications": [ { "format": "PNG", "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ false ], "supportedPageLayouts": [ "DEFAULT" ] } ], "size": { "length": 6, "unit": "INCH", "width": 4 } }, { "format": "ZPL", "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ false ], "supportedPageLayouts": [ "DEFAULT" ] } ], "size": { "length": 6, "unit": "INCH", "width": 4 } }, { "format": "PDF", "printOptions": [ { "supportedDPIs": [ 300, 203 ], "supportedDocumentDetails": [ { "isMandatory": true, "name": "LABEL" } ], "supportedFileJoiningOptions": [ false ], "supportedPageLayouts": [ "DEFAULT" ] } ], "size": { "length": 6, "unit": "INCH", "width": 4 } } ], "totalCharge": { "unit": "INR", "value": 151 } } ], "requestToken": "amzn1.rq.99200470481323.100" } }

Step 2. Discover required additional inputs for a shipment

The requiresAdditionalInputs property in the response to the getRates operation indicates whether you must provide additional inputs to purchase the shipping service that corresponds to a rate. When true, you must call the getAdditionalInputs operation to return the JSON schema to use when providing the additional information. You provide the additional inputs when you call the purchaseShipment operation to purchase the shipping service.

You use the getAdditionalInputs operation to understand what additional inputs are required. This is a required step for international shipments. The response returns the schema you must use to provide the additional inputs when you call the purchaseShipment operation. You can also use the information in the schema to inform your building of dynamic forms for your end user to use to provide the additional information required.

Note: These fields may change as customs/regulatory rules change in different places, so we recommend that you do not cache or hardcode these fields for future purchase shipment calls.

To get the JSON schema for the additional inputs required, call the getAdditionalInputs operation, passing the following parameters:

Request query parameters

Name Description Required
requestToken The request token returned in the response to the getRates operation.

Type: string

Yes
rateId The rate identifier for the shipping offering (rate) returned in the response to the getRates operation.

Type: string

Yes

Request header parameters

Name Description Required
x-amzn-shipping-business-id Amazon shipping business to assume for this request. The default is AmazonShipping_UK.

Type: enum (X-amzn-shipping-business-id)

No
x-amzn-access-token Amazon shipping request token Yes

Response

A successful response includes the following:

NameDescriptionSchema
payloadThe JSON schema to use to provide additional inputs when required to purchase a shipping offering.GetAdditionalInputsResult

API Request example and Response examples

GET https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments/additionalInputs/schema?requestToken=amzn1.rq.5cbe8664-285e-4bd5-8a70-db2ed9ba127e.101&rateId=9559ad41-c9da-12b3-abc9-5684e6a76be8 x-amz-access-token: Atza|IwEBIGorlXXX
{ "payload": { "title": "Additional Inputs", "required": [ "shipment", "items" ], "properties": { "shipment": { "title": "Shipment Inputs", "required": [ "NON_DELIVERABLE_INSTRUCTIONS", "SENDER_ADDRESS_TRANSLATED" ], "properties": { "NON_DELIVERABLE_INSTRUCTIONS": { "title": "Non-Deliverable Instructions", "default": "ABANDON", "enum": [ "ABANDON", "RETURN_TO_SELLER" ], "type": "string" }, "SENDER_ADDRESS_TRANSLATED": { "title": "Ship From Address (Chinese)", "required": [ "city", "countryCode", "postalCode", "name", "line1" ], "properties": { "stateOrRegion": { "title": "State", "type": "string" }, "phoneNumber": { "title": "Phone Number", "type": "string" }, "city": { "title": "City", "type": "string" }, "countryCode": { "title": "Country Code", "type": "string" }, "postalCode": { "title": "Postal Code", "type": "string" }, "name": { "title": "Customer Name", "type": "string" }, "line3": { "title": "Line 3", "type": "string" }, "line2": { "title": "Line 2", "type": "string" }, "line1": { "title": "Line 1", "type": "string" } }, "type": "object" } }, "type": "object" }, "items": { "title": "Item Inputs", "required": [ "B004UHQD1O" ], "properties": { "B004UHQD1O": { "title": "B004UHQD1O", "required": [ "ITEM_WEIGHT", "ITEM_DESCRIPTION_TRANSLATED", "COUNTRY_OF_ORIGIN", "ITEM_VALUE", "ITEM_DESCRIPTION" ], "properties": { "ITEM_WEIGHT": { "title": "Item weight", "required": [ "unit", "value" ], "properties": { "unit": { "title": "Unit", "enum": [ "GRAM", "KILOGRAM", "POUND", "OUNCE" ], "type": "string" }, "value": { "title": "Value", "type": "number" } }, "type": "object" }, "ITEM_DESCRIPTION_TRANSLATED": { "title": "Item Description (Chinese)", "pattern": "^([a-zA-Z0-9\\W])", "type": "string" }, "COUNTRY_OF_ORIGIN": { "title": "Country of Origin", "pattern": "^[a-zA-Z]{2}$", "type": "string" }, "ITEM_VALUE": { "title": "Item Value (USD)", "required": [ "unit", "value" ], "properties": { "unit": { "title": "Unit", "enum": [ "USD", "GBP" ], "type": "string" }, "value": { "title": "Value", "type": "number" } }, "type": "object" }, "ITEM_DESCRIPTION": { "title": "Item Description", "pattern": "^[a-zA-Z0-9-._& ]{3,25}$", "type": "string" }, "HS_CODE": { "title": "HS Code", "pattern": "^[0-9 -]{1,10}?$", "type": "string" } }, "type": "object" } }, "type": "object" } }, "type": "object" } }

Step 3. Purchase a shipment

After getting rates and discovering any required additional inputs, you can purchase an available shipping service. If additional inputs are required for the service you want to purchase, you must provide them when you call the purchaseShipment operation as part of this step.

You must complete the purchase within 10 minutes of the creation of the rate by the shipping service provider. If you make the request after the 10 minutes have expired, you will receive an error response with the error code of TOKEN_EXPIRED. If you receive this error response, you must get the rates for the shipment again.

Note: At this time each shipment is limited to a single package. If you are fulfilling an order with multiple packages, create a separate shipment for each package.

To purchase and create a shipment, call the purchaseShipment operation, passing the following request parameters:

Request

Name Description Required
requestToken A unique token generated to identify a getRates operation.

Type: RequestToken

Yes
rateId An identifier for the rate (shipping offering) selected from among those returned in the response to the getRates operation.

This rate expires 10 minutes after creation by the shipping service provider. If you make the request after the 10 minutes have expired, you will receive an error response with the error code equal to TOKEN_EXPIRED.

Type: RateId

Yes
requestedDocumentSpecification The document specifications requested. For calls to the purchaseShipment operation, the shipment purchase fails if the specified document specifications are not among those returned in the response to the getRates operation.

Type: RequestedDocumentSpecification

Yes
requestedValueAddedServices The value-added services to be added to a shipping service purchase.

Type: RequestedValueAddedServiceList

No
additionalInputs The additional inputs required to purchase a shipping offering, in JSON format. The JSON provided here must adhere to the JSON schema that is returned in the response to the getAdditionalInputs operation.

Additional inputs are only required when indicated by the requiresAdditionalInputs property in the response to the getRates operation.

Type: object

No

Request header parameters

Name Description Required
x-amzn-shipping-business-id Amazon shipping business to assume for this request. The default is AmazonShipping_UK.

Type: enum (X-amzn-shipping-business-id)

Yes
x-amzn-access-token Amazon shipping request token Yes

Response

A successful response includes the following:

NameDescriptionSchema
payloadThe payload for the purchaseShipment operation.PurchaseShipmentResult

Sample API Request

POST https://sellingpartnerapi-eu.amazon.com/shipping/v2/shipments x-amzn-shipping-business-id: [x-amzn-shipping-business-id](https://developer-docs.amazon.com/amazon-shipping/docs/frequently-asked-questions#which-x-amzn-shipping-business-id-to-use-as-request-header-while-calling-shipping-v2-api) x-amz-access-token: Atza|IwEBIGorlXXX

API Request and Response examples without additional inputs

{ "requestToken": "amzn1.dd2b0cec-b215-4504-b94d-d6469b0c4a63", "rateId": "e1b7cf2d1516d8c5343a087e10a5a2261ff36b83bdb5a91c6ce51b19586ed9861507200580943", "requestedDocumentSpecification": { "format": "PNG", "size": { "width": 4, "length": 6, "unit": "INCH" }, "dpi": 300, "pageLayout": "DEFAULT", "needFileJoining": false, "requestedDocumentTypes": [ "LABEL" ] } }
{ "payload": { "shipmentId": "amzn1.dd2b0cec-b215-4504-b94d-d6469b0c4a63", "packageDocumentDetails": [ { "packageClientReferenceId": "abcdef", "packageDocuments": [ { "type": "LABEL", "contents": "iVBORw0KGgoAAAANSUhEUgAABLAAAAcIAgAAAABDi383AAAACXBIWXMAAC4jAAAuIwF4pT92AABFlUlEQV", "format": "PNG" } ], "trackingId": "90171138606915760111801497834333303801954" } ], "promise": { "pickupWindow": { "startTime": "2017-10-05T10:35:12.373Z", "endTime": "2017-10-05T10:35:12.373Z" }, "deliveryWindow": { "startTime": "2017-10-05T10:35:12.373Z", "endTime": "2017-10-05T10:35:12.373Z" } } } }

API Request and Response examples with additional inputs

{ "requestToken": "amzn1.rq.5cbe8664-285e-4bd5-8a70-db2ed9ba017e.101", "rateId": "9559ad41-c9da-43b8-aed9-5684e6a76be8", "requestedDocumentSpecification": { "format": "PDF", "size": { "width": 15, "length": 10, "unit": "CENTIMETER" }, "pageLayout": "LEFT", "needFileJoining": true, "requestedDocumentTypes": [ "LABEL"] }, "requestedValueAddedServices": [ { "id": "DELIVERY_CONFIRMATION" }, { "id": "SHIPPER_DROPOFF_CHARGE" } ], "additionalInputs": { "shipment": { "SENDER_ADDRESS_TRANSLATED": { "city": "", "countryCode": "CN", "postalCode": "510810", "name": "", "line1": "", "line2": "", "line3": " ", "stateOrRegion": "", "phoneNumber": "555-555-5555" }, "NON_DELIVERABLE_INSTRUCTIONS": "RETURN_TO_SELLER" }, "items": { "B004UHQD1O": { "ITEM_WEIGHT": { "unit": "GRAM", "value": 250 }, "ITEM_VALUE": { "unit": "USD", "value": 1 }, "COUNTRY_OF_ORIGIN": "CN", "ITEM_DESCRIPTION_TRANSLATED": "", "ITEM_DESCRIPTION": "penbox" } } } }
{ "payload": { "shipmentId": "'878522117881'", "packageDocumentDetails": [ { "packageClientReferenceId": "abcd", "packageDocuments": [ { "type": "LABEL", "format": "PNG", "contents": "sdioadaiosfhdodsaiufhouafhoudfhdouahfac==" } ], "trackingId": "'157864826197'" } ], "promise": { "pickupWindow": { "startTime": "2019-12-11T07:09:05.513Z", "endTime": "2019-12-11T09:09:05.513Z" }, "deliveryWindow": { "startTime": "2019-12-13T07:09:05.513Z", "endTime": "2019-12-13T09:09:05.513Z" } } } }

Did this page help you?