Chilkat Online Tools

PowerBuilder / ShipEngine Walkthrough / Compare rates

Back to Collection Items

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Rate_id
string ls_Rate_type
string ls_V_Currency
string ls_Amount
string ls_Insurance_amountCurrency
integer li_Insurance_amountAmount
string ls_Confirmation_amountCurrency
integer li_Confirmation_amountAmount
string ls_Other_amountCurrency
integer li_Other_amountAmount
string ls_Zone
string ls_Package_type
integer li_Delivery_days
integer li_Guaranteed_service
string ls_Estimated_delivery_date
string ls_Carrier_delivery_days
integer li_Negotiated_rate
string ls_Service_type
integer li_Trackable
string ls_Carrier_code
string ls_Carrier_nickname
string ls_Carrier_friendly_name
string ls_Validation_status
integer j
integer li_Count_j
string ls_StrVal
string ls_Package_code
integer li_WeightValue
string ls_WeightUnit
string ls_DimensionsUnit
integer li_Length
integer li_Width
integer li_Height
string ls_Insured_valueCurrency
integer li_Insured_valueAmount
string ls_Reference1
string ls_Reference2
string ls_Reference3
string ls_External_package_id
string ls_Rate_request_id
string ls_Shipment_id
string ls_Created_at
string ls_Status
string ls_Shipment_id
string ls_Carrier_id
string ls_Service_code
string ls_External_shipment_id
string ls_Ship_date
string ls_Created_at
string ls_Modified_at
string ls_Shipment_status
string ls_Name
string ls_Phone
string ls_Company_name
string ls_Address_line1
string ls_Address_line2
string ls_Address_line3
string ls_City_locality
string ls_State_province
string ls_Postal_code
string ls_Country_code
string ls_Address_residential_indicator
string ls_Ship_fromName
string ls_Ship_fromPhone
string ls_Ship_fromCompany_name
string ls_Ship_fromAddress_line1
string ls_Ship_fromAddress_line2
string ls_Ship_fromAddress_line3
string ls_Ship_fromCity_locality
string ls_Ship_fromState_province
string ls_Ship_fromPostal_code
string ls_Ship_fromCountry_code
string ls_Ship_fromAddress_residential_indicator
string ls_Warehouse_id
string ls_Return_toName
string ls_Return_toPhone
string ls_Return_toCompany_name
string ls_Return_toAddress_line1
string ls_Return_toAddress_line2
string ls_Return_toAddress_line3
string ls_Return_toCity_locality
string ls_Return_toState_province
string ls_Return_toPostal_code
string ls_Return_toCountry_code
string ls_Return_toAddress_residential_indicator
string ls_Confirmation
string ls_Customs
string ls_External_order_id
string ls_Order_source_code
string ls_Bill_to_account
string ls_Bill_to_country_code
string ls_Bill_to_party
string ls_Bill_to_postal_code
integer li_Contains_alcohol
integer li_Delivered_duty_paid
integer li_Non_machinable
integer li_Saturday_delivery
integer li_Dry_ice
string ls_Dry_ice_weight
string ls_Freight_class
string ls_Custom_field1
string ls_Custom_field2
string ls_Custom_field3
string ls_Insurance_provider
integer li_Value
string ls_Unit
integer i
integer li_Count_i

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// Use this online tool to generate code from sample JSON: Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "rate_options": {
//     "carrier_ids": [
//       "{{stamps_com}}",
//       "{{fedex}}",
//       "{{ups}}"
//     ],
//     "service_codes": [
//       "usps_priority_mail",
//       "fedex_ground",
//       "ups_ground"
//     ]
//   },
//   "shipment": {
//     "ship_from": {
//       "name": "John Doe",
//       "company_name": "Example Corp.",
//       "address_line1": "4009 Marathon Blvd",
//       "city_locality": "Austin",
//       "state_province": "TX",
//       "postal_code": "78756",
//       "country_code": "US",
//       "phone": "512-555-5555"
//     },
//     "ship_to": {
//       "name": "Amanda Miller",
//       "address_line1": "525 S Winchester Blvd",
//       "city_locality": "San Jose",
//       "state_province": "CA",
//       "postal_code": "95128",
//       "country_code": "US"
//     },
//     "packages": [
//       {
//         "weight": {
//           "value": 17,
//           "unit": "pound"
//         },
//         "dimensions": {
//           "length": 36,
//           "width": 12,
//           "height": 24,
//           "unit": "inch"
//         }
//       }
//     ]
//   }
// }

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_Json.UpdateString("rate_options.carrier_ids[0]","{{stamps_com}}")
loo_Json.UpdateString("rate_options.carrier_ids[1]","{{fedex}}")
loo_Json.UpdateString("rate_options.carrier_ids[2]","{{ups}}")
loo_Json.UpdateString("rate_options.service_codes[0]","usps_priority_mail")
loo_Json.UpdateString("rate_options.service_codes[1]","fedex_ground")
loo_Json.UpdateString("rate_options.service_codes[2]","ups_ground")
loo_Json.UpdateString("shipment.ship_from.name","John Doe")
loo_Json.UpdateString("shipment.ship_from.company_name","Example Corp.")
loo_Json.UpdateString("shipment.ship_from.address_line1","4009 Marathon Blvd")
loo_Json.UpdateString("shipment.ship_from.city_locality","Austin")
loo_Json.UpdateString("shipment.ship_from.state_province","TX")
loo_Json.UpdateString("shipment.ship_from.postal_code","78756")
loo_Json.UpdateString("shipment.ship_from.country_code","US")
loo_Json.UpdateString("shipment.ship_from.phone","512-555-5555")
loo_Json.UpdateString("shipment.ship_to.name","Amanda Miller")
loo_Json.UpdateString("shipment.ship_to.address_line1","525 S Winchester Blvd")
loo_Json.UpdateString("shipment.ship_to.city_locality","San Jose")
loo_Json.UpdateString("shipment.ship_to.state_province","CA")
loo_Json.UpdateString("shipment.ship_to.postal_code","95128")
loo_Json.UpdateString("shipment.ship_to.country_code","US")
loo_Json.UpdateInt("shipment.packages[0].weight.value",17)
loo_Json.UpdateString("shipment.packages[0].weight.unit","pound")
loo_Json.UpdateInt("shipment.packages[0].dimensions.length",36)
loo_Json.UpdateInt("shipment.packages[0].dimensions.width",12)
loo_Json.UpdateInt("shipment.packages[0].dimensions.height",24)
loo_Json.UpdateString("shipment.packages[0].dimensions.unit","inch")

loo_Http.SetRequestHeader("API-Key","{{API_KEY}}")
loo_Http.SetRequestHeader("Content-Type","application/json")

loo_Resp = loo_Http.PostJson3("https://api.shipengine.com/v1/rates","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Json
    return
end if

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

loo_Resp.GetBodySb(loo_SbResponseBody)

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Resp
    destroy loo_Http
    destroy loo_Json
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

destroy loo_Resp

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "rate_response": {
//     "rates": [
//       {
//         "rate_id": "se-12443424",
//         "rate_type": "shipment",
//         "carrier_id": "se-121862",
//         "shipping_amount": {
//           "currency": "usd",
//           "amount": 65.58
//         },
//         "insurance_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "confirmation_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "other_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "zone": null,
//         "package_type": null,
//         "delivery_days": 4,
//         "guaranteed_service": true,
//         "estimated_delivery_date": "2019-09-23T23:00:00Z",
//         "carrier_delivery_days": "Monday 9/23 by 11:00 PM",
//         "ship_date": "2019-09-17T00:00:00Z",
//         "negotiated_rate": false,
//         "service_type": "UPSĀ® Ground",
//         "service_code": "ups_ground",
//         "trackable": true,
//         "carrier_code": "ups",
//         "carrier_nickname": "ShipEngine Test Account - UPS",
//         "carrier_friendly_name": "UPS",
//         "validation_status": "valid",
//         "warning_messages": [
//         ],
//         "error_messages": [
//         ]
//       },
//       {
//         "rate_id": "se-12443425",
//         "rate_type": "shipment",
//         "carrier_id": "se-121861",
//         "shipping_amount": {
//           "currency": "usd",
//           "amount": 98.14
//         },
//         "insurance_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "confirmation_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "other_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "zone": 7,
//         "package_type": "package",
//         "delivery_days": 2,
//         "guaranteed_service": false,
//         "estimated_delivery_date": "2019-09-19T00:00:00Z",
//         "carrier_delivery_days": "2",
//         "ship_date": "2019-09-17T00:00:00Z",
//         "negotiated_rate": false,
//         "service_type": "USPS Priority Mail",
//         "service_code": "usps_priority_mail",
//         "trackable": true,
//         "carrier_code": "stamps_com",
//         "carrier_nickname": "ShipEngine Test Account - Stamps.com",
//         "carrier_friendly_name": "Stamps.com",
//         "validation_status": "valid",
//         "warning_messages": [
//         ],
//         "error_messages": [
//         ]
//       },
//       {
//         "rate_id": "se-12443426",
//         "rate_type": "shipment",
//         "carrier_id": "se-121861",
//         "shipping_amount": {
//           "currency": "usd",
//           "amount": 12.72
//         },
//         "insurance_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "confirmation_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "other_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "zone": 7,
//         "package_type": "medium_flat_rate_box",
//         "delivery_days": 2,
//         "guaranteed_service": false,
//         "estimated_delivery_date": "2019-09-19T00:00:00Z",
//         "carrier_delivery_days": "2",
//         "ship_date": "2019-09-17T00:00:00Z",
//         "negotiated_rate": false,
//         "service_type": "USPS Priority Mail",
//         "service_code": "usps_priority_mail",
//         "trackable": true,
//         "carrier_code": "stamps_com",
//         "carrier_nickname": "ShipEngine Test Account - Stamps.com",
//         "carrier_friendly_name": "Stamps.com",
//         "validation_status": "valid",
//         "warning_messages": [
//         ],
//         "error_messages": [
//         ]
//       },
//       {
//         "rate_id": "se-12443427",
//         "rate_type": "shipment",
//         "carrier_id": "se-121861",
//         "shipping_amount": {
//           "currency": "usd",
//           "amount": 6.98
//         },
//         "insurance_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "confirmation_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "other_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "zone": 7,
//         "package_type": "small_flat_rate_box",
//         "delivery_days": 2,
//         "guaranteed_service": false,
//         "estimated_delivery_date": "2019-09-19T00:00:00Z",
//         "carrier_delivery_days": "2",
//         "ship_date": "2019-09-17T00:00:00Z",
//         "negotiated_rate": false,
//         "service_type": "USPS Priority Mail",
//         "service_code": "usps_priority_mail",
//         "trackable": true,
//         "carrier_code": "stamps_com",
//         "carrier_nickname": "ShipEngine Test Account - Stamps.com",
//         "carrier_friendly_name": "Stamps.com",
//         "validation_status": "valid",
//         "warning_messages": [
//         ],
//         "error_messages": [
//         ]
//       },
//       {
//         "rate_id": "se-12443428",
//         "rate_type": "shipment",
//         "carrier_id": "se-121861",
//         "shipping_amount": {
//           "currency": "usd",
//           "amount": 17.47
//         },
//         "insurance_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "confirmation_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "other_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "zone": 7,
//         "package_type": "large_flat_rate_box",
//         "delivery_days": 2,
//         "guaranteed_service": false,
//         "estimated_delivery_date": "2019-09-19T00:00:00Z",
//         "carrier_delivery_days": "2",
//         "ship_date": "2019-09-17T00:00:00Z",
//         "negotiated_rate": false,
//         "service_type": "USPS Priority Mail",
//         "service_code": "usps_priority_mail",
//         "trackable": true,
//         "carrier_code": "stamps_com",
//         "carrier_nickname": "ShipEngine Test Account - Stamps.com",
//         "carrier_friendly_name": "Stamps.com",
//         "validation_status": "valid",
//         "warning_messages": [
//         ],
//         "error_messages": [
//         ]
//       },
//       {
//         "rate_id": "se-12443429",
//         "rate_type": "shipment",
//         "carrier_id": "se-121861",
//         "shipping_amount": {
//           "currency": "usd",
//           "amount": 6.48
//         },
//         "insurance_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "confirmation_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "other_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "zone": 7,
//         "package_type": "flat_rate_envelope",
//         "delivery_days": 2,
//         "guaranteed_service": false,
//         "estimated_delivery_date": "2019-09-19T00:00:00Z",
//         "carrier_delivery_days": "2",
//         "ship_date": "2019-09-17T00:00:00Z",
//         "negotiated_rate": false,
//         "service_type": "USPS Priority Mail",
//         "service_code": "usps_priority_mail",
//         "trackable": true,
//         "carrier_code": "stamps_com",
//         "carrier_nickname": "ShipEngine Test Account - Stamps.com",
//         "carrier_friendly_name": "Stamps.com",
//         "validation_status": "has_warnings",
//         "warning_messages": [
//           "Heads up! You've included custom dimensions for a package type with a standardized size. For more accurate rates, consider removing the dimensions for this shipment."
//         ],
//         "error_messages": [
//         ]
//       },
//       {
//         "rate_id": "se-12443430",
//         "rate_type": "shipment",
//         "carrier_id": "se-121861",
//         "shipping_amount": {
//           "currency": "usd",
//           "amount": 7.03
//         },
//         "insurance_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "confirmation_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "other_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "zone": 7,
//         "package_type": "flat_rate_padded_envelope",
//         "delivery_days": 2,
//         "guaranteed_service": false,
//         "estimated_delivery_date": "2019-09-19T00:00:00Z",
//         "carrier_delivery_days": "2",
//         "ship_date": "2019-09-17T00:00:00Z",
//         "negotiated_rate": false,
//         "service_type": "USPS Priority Mail",
//         "service_code": "usps_priority_mail",
//         "trackable": true,
//         "carrier_code": "stamps_com",
//         "carrier_nickname": "ShipEngine Test Account - Stamps.com",
//         "carrier_friendly_name": "Stamps.com",
//         "validation_status": "valid",
//         "warning_messages": [
//         ],
//         "error_messages": [
//         ]
//       },
//       {
//         "rate_id": "se-12443431",
//         "rate_type": "shipment",
//         "carrier_id": "se-121861",
//         "shipping_amount": {
//           "currency": "usd",
//           "amount": 6.78
//         },
//         "insurance_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "confirmation_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "other_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "zone": 7,
//         "package_type": "flat_rate_legal_envelope",
//         "delivery_days": 2,
//         "guaranteed_service": false,
//         "estimated_delivery_date": "2019-09-19T00:00:00Z",
//         "carrier_delivery_days": "2",
//         "ship_date": "2019-09-17T00:00:00Z",
//         "negotiated_rate": false,
//         "service_type": "USPS Priority Mail",
//         "service_code": "usps_priority_mail",
//         "trackable": true,
//         "carrier_code": "stamps_com",
//         "carrier_nickname": "ShipEngine Test Account - Stamps.com",
//         "carrier_friendly_name": "Stamps.com",
//         "validation_status": "valid",
//         "warning_messages": [
//         ],
//         "error_messages": [
//         ]
//       },
//       {
//         "rate_id": "se-12443432",
//         "rate_type": "shipment",
//         "carrier_id": "se-121863",
//         "shipping_amount": {
//           "currency": "usd",
//           "amount": 58.37
//         },
//         "insurance_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "confirmation_amount": {
//           "currency": "usd",
//           "amount": 0
//         },
//         "other_amount": {
//           "currency": "usd",
//           "amount": 4.09
//         },
//         "zone": null,
//         "package_type": null,
//         "delivery_days": 3,
//         "guaranteed_service": false,
//         "estimated_delivery_date": "2019-09-20T00:00:00Z",
//         "carrier_delivery_days": "3",
//         "ship_date": "2019-09-17T00:00:00Z",
//         "negotiated_rate": false,
//         "service_type": "FedEx GroundĀ®",
//         "service_code": "fedex_ground",
//         "trackable": true,
//         "carrier_code": "fedex",
//         "carrier_nickname": "ShipEngine Test Account - FedEx",
//         "carrier_friendly_name": "FedEx",
//         "validation_status": "valid",
//         "warning_messages": [
//         ],
//         "error_messages": [
//         ]
//       }
//     ],
//     "invalid_rates": [
//     ],
//     "rate_request_id": "se-1426058",
//     "shipment_id": "se-4133871",
//     "created_at": "2019-09-17T18:22:40.010591Z",
//     "status": "completed",
//     "errors": [
//     ]
//   },
//   "shipment_id": "se-4133871",
//   "carrier_id": null,
//   "service_code": null,
//   "external_shipment_id": null,
//   "ship_date": "2019-09-17T00:00:00Z",
//   "created_at": "2019-09-17T18:22:39.317Z",
//   "modified_at": "2019-09-17T18:22:39.317Z",
//   "shipment_status": "pending",
//   "ship_to": {
//     "name": "Amanda Miller",
//     "phone": null,
//     "company_name": null,
//     "address_line1": "525 S Winchester Blvd",
//     "address_line2": null,
//     "address_line3": null,
//     "city_locality": "San Jose",
//     "state_province": "CA",
//     "postal_code": "95128",
//     "country_code": "US",
//     "address_residential_indicator": "unknown"
//   },
//   "ship_from": {
//     "name": "John Doe",
//     "phone": "512-555-5555",
//     "company_name": null,
//     "address_line1": "4009 Marathon Blvd",
//     "address_line2": null,
//     "address_line3": null,
//     "city_locality": "Austin",
//     "state_province": "TX",
//     "postal_code": "78756",
//     "country_code": "US",
//     "address_residential_indicator": "unknown"
//   },
//   "warehouse_id": null,
//   "return_to": {
//     "name": "John Doe",
//     "phone": "512-555-5555",
//     "company_name": null,
//     "address_line1": "4009 Marathon Blvd",
//     "address_line2": null,
//     "address_line3": null,
//     "city_locality": "Austin",
//     "state_province": "TX",
//     "postal_code": "78756",
//     "country_code": "US",
//     "address_residential_indicator": "unknown"
//   },
//   "confirmation": "none",
//   "customs": null,
//   "external_order_id": null,
//   "order_source_code": null,
//   "advanced_options": {
//     "bill_to_account": null,
//     "bill_to_country_code": null,
//     "bill_to_party": null,
//     "bill_to_postal_code": null,
//     "contains_alcohol": false,
//     "delivered_duty_paid": false,
//     "non_machinable": false,
//     "saturday_delivery": false,
//     "dry_ice": false,
//     "dry_ice_weight": null,
//     "freight_class": null,
//     "custom_field1": null,
//     "custom_field2": null,
//     "custom_field3": null
//   },
//   "insurance_provider": "none",
//   "tags": [
//   ],
//   "packages": [
//     {
//       "package_code": "package",
//       "weight": {
//         "value": 17,
//         "unit": "pound"
//       },
//       "dimensions": {
//         "unit": "inch",
//         "length": 36,
//         "width": 12,
//         "height": 24
//       },
//       "insured_value": {
//         "currency": "usd",
//         "amount": 0
//       },
//       "label_messages": {
//         "reference1": null,
//         "reference2": null,
//         "reference3": null
//       },
//       "external_package_id": null
//     }
//   ],
//   "total_weight": {
//     "value": 17,
//     "unit": "pound"
//   },
//   "items": [
//   ]
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

ls_Rate_request_id = loo_JResp.StringOf("rate_response.rate_request_id")
ls_Shipment_id = loo_JResp.StringOf("rate_response.shipment_id")
ls_Created_at = loo_JResp.StringOf("rate_response.created_at")
ls_Status = loo_JResp.StringOf("rate_response.status")
ls_Shipment_id = loo_JResp.StringOf("shipment_id")
ls_Carrier_id = loo_JResp.StringOf("carrier_id")
ls_Service_code = loo_JResp.StringOf("service_code")
ls_External_shipment_id = loo_JResp.StringOf("external_shipment_id")
ls_Ship_date = loo_JResp.StringOf("ship_date")
ls_Created_at = loo_JResp.StringOf("created_at")
ls_Modified_at = loo_JResp.StringOf("modified_at")
ls_Shipment_status = loo_JResp.StringOf("shipment_status")
ls_Name = loo_JResp.StringOf("ship_to.name")
ls_Phone = loo_JResp.StringOf("ship_to.phone")
ls_Company_name = loo_JResp.StringOf("ship_to.company_name")
ls_Address_line1 = loo_JResp.StringOf("ship_to.address_line1")
ls_Address_line2 = loo_JResp.StringOf("ship_to.address_line2")
ls_Address_line3 = loo_JResp.StringOf("ship_to.address_line3")
ls_City_locality = loo_JResp.StringOf("ship_to.city_locality")
ls_State_province = loo_JResp.StringOf("ship_to.state_province")
ls_Postal_code = loo_JResp.StringOf("ship_to.postal_code")
ls_Country_code = loo_JResp.StringOf("ship_to.country_code")
ls_Address_residential_indicator = loo_JResp.StringOf("ship_to.address_residential_indicator")
ls_Ship_fromName = loo_JResp.StringOf("ship_from.name")
ls_Ship_fromPhone = loo_JResp.StringOf("ship_from.phone")
ls_Ship_fromCompany_name = loo_JResp.StringOf("ship_from.company_name")
ls_Ship_fromAddress_line1 = loo_JResp.StringOf("ship_from.address_line1")
ls_Ship_fromAddress_line2 = loo_JResp.StringOf("ship_from.address_line2")
ls_Ship_fromAddress_line3 = loo_JResp.StringOf("ship_from.address_line3")
ls_Ship_fromCity_locality = loo_JResp.StringOf("ship_from.city_locality")
ls_Ship_fromState_province = loo_JResp.StringOf("ship_from.state_province")
ls_Ship_fromPostal_code = loo_JResp.StringOf("ship_from.postal_code")
ls_Ship_fromCountry_code = loo_JResp.StringOf("ship_from.country_code")
ls_Ship_fromAddress_residential_indicator = loo_JResp.StringOf("ship_from.address_residential_indicator")
ls_Warehouse_id = loo_JResp.StringOf("warehouse_id")
ls_Return_toName = loo_JResp.StringOf("return_to.name")
ls_Return_toPhone = loo_JResp.StringOf("return_to.phone")
ls_Return_toCompany_name = loo_JResp.StringOf("return_to.company_name")
ls_Return_toAddress_line1 = loo_JResp.StringOf("return_to.address_line1")
ls_Return_toAddress_line2 = loo_JResp.StringOf("return_to.address_line2")
ls_Return_toAddress_line3 = loo_JResp.StringOf("return_to.address_line3")
ls_Return_toCity_locality = loo_JResp.StringOf("return_to.city_locality")
ls_Return_toState_province = loo_JResp.StringOf("return_to.state_province")
ls_Return_toPostal_code = loo_JResp.StringOf("return_to.postal_code")
ls_Return_toCountry_code = loo_JResp.StringOf("return_to.country_code")
ls_Return_toAddress_residential_indicator = loo_JResp.StringOf("return_to.address_residential_indicator")
ls_Confirmation = loo_JResp.StringOf("confirmation")
ls_Customs = loo_JResp.StringOf("customs")
ls_External_order_id = loo_JResp.StringOf("external_order_id")
ls_Order_source_code = loo_JResp.StringOf("order_source_code")
ls_Bill_to_account = loo_JResp.StringOf("advanced_options.bill_to_account")
ls_Bill_to_country_code = loo_JResp.StringOf("advanced_options.bill_to_country_code")
ls_Bill_to_party = loo_JResp.StringOf("advanced_options.bill_to_party")
ls_Bill_to_postal_code = loo_JResp.StringOf("advanced_options.bill_to_postal_code")
li_Contains_alcohol = loo_JResp.BoolOf("advanced_options.contains_alcohol")
li_Delivered_duty_paid = loo_JResp.BoolOf("advanced_options.delivered_duty_paid")
li_Non_machinable = loo_JResp.BoolOf("advanced_options.non_machinable")
li_Saturday_delivery = loo_JResp.BoolOf("advanced_options.saturday_delivery")
li_Dry_ice = loo_JResp.BoolOf("advanced_options.dry_ice")
ls_Dry_ice_weight = loo_JResp.StringOf("advanced_options.dry_ice_weight")
ls_Freight_class = loo_JResp.StringOf("advanced_options.freight_class")
ls_Custom_field1 = loo_JResp.StringOf("advanced_options.custom_field1")
ls_Custom_field2 = loo_JResp.StringOf("advanced_options.custom_field2")
ls_Custom_field3 = loo_JResp.StringOf("advanced_options.custom_field3")
ls_Insurance_provider = loo_JResp.StringOf("insurance_provider")
li_Value = loo_JResp.IntOf("total_weight.value")
ls_Unit = loo_JResp.StringOf("total_weight.unit")
i = 0
li_Count_i = loo_JResp.SizeOfArray("rate_response.rates")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Rate_id = loo_JResp.StringOf("rate_response.rates[i].rate_id")
    ls_Rate_type = loo_JResp.StringOf("rate_response.rates[i].rate_type")
    ls_Carrier_id = loo_JResp.StringOf("rate_response.rates[i].carrier_id")
    ls_V_Currency = loo_JResp.StringOf("rate_response.rates[i].shipping_amount.currency")
    ls_Amount = loo_JResp.StringOf("rate_response.rates[i].shipping_amount.amount")
    ls_Insurance_amountCurrency = loo_JResp.StringOf("rate_response.rates[i].insurance_amount.currency")
    li_Insurance_amountAmount = loo_JResp.IntOf("rate_response.rates[i].insurance_amount.amount")
    ls_Confirmation_amountCurrency = loo_JResp.StringOf("rate_response.rates[i].confirmation_amount.currency")
    li_Confirmation_amountAmount = loo_JResp.IntOf("rate_response.rates[i].confirmation_amount.amount")
    ls_Other_amountCurrency = loo_JResp.StringOf("rate_response.rates[i].other_amount.currency")
    li_Other_amountAmount = loo_JResp.IntOf("rate_response.rates[i].other_amount.amount")
    ls_Zone = loo_JResp.StringOf("rate_response.rates[i].zone")
    ls_Package_type = loo_JResp.StringOf("rate_response.rates[i].package_type")
    li_Delivery_days = loo_JResp.IntOf("rate_response.rates[i].delivery_days")
    li_Guaranteed_service = loo_JResp.BoolOf("rate_response.rates[i].guaranteed_service")
    ls_Estimated_delivery_date = loo_JResp.StringOf("rate_response.rates[i].estimated_delivery_date")
    ls_Carrier_delivery_days = loo_JResp.StringOf("rate_response.rates[i].carrier_delivery_days")
    ls_Ship_date = loo_JResp.StringOf("rate_response.rates[i].ship_date")
    li_Negotiated_rate = loo_JResp.BoolOf("rate_response.rates[i].negotiated_rate")
    ls_Service_type = loo_JResp.StringOf("rate_response.rates[i].service_type")
    ls_Service_code = loo_JResp.StringOf("rate_response.rates[i].service_code")
    li_Trackable = loo_JResp.BoolOf("rate_response.rates[i].trackable")
    ls_Carrier_code = loo_JResp.StringOf("rate_response.rates[i].carrier_code")
    ls_Carrier_nickname = loo_JResp.StringOf("rate_response.rates[i].carrier_nickname")
    ls_Carrier_friendly_name = loo_JResp.StringOf("rate_response.rates[i].carrier_friendly_name")
    ls_Validation_status = loo_JResp.StringOf("rate_response.rates[i].validation_status")
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("rate_response.rates[i].warning_messages")
    do while j < li_Count_j
        loo_JResp.J = j
        ls_StrVal = loo_JResp.StringOf("rate_response.rates[i].warning_messages[j]")
        j = j + 1
    loop
    j = 0
    li_Count_j = loo_JResp.SizeOfArray("rate_response.rates[i].error_messages")
    do while j < li_Count_j
        loo_JResp.J = j
        j = j + 1
    loop
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("rate_response.invalid_rates")
do while i < li_Count_i
    loo_JResp.I = i
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("rate_response.errors")
do while i < li_Count_i
    loo_JResp.I = i
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("tags")
do while i < li_Count_i
    loo_JResp.I = i
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("packages")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Package_code = loo_JResp.StringOf("packages[i].package_code")
    li_WeightValue = loo_JResp.IntOf("packages[i].weight.value")
    ls_WeightUnit = loo_JResp.StringOf("packages[i].weight.unit")
    ls_DimensionsUnit = loo_JResp.StringOf("packages[i].dimensions.unit")
    li_Length = loo_JResp.IntOf("packages[i].dimensions.length")
    li_Width = loo_JResp.IntOf("packages[i].dimensions.width")
    li_Height = loo_JResp.IntOf("packages[i].dimensions.height")
    ls_Insured_valueCurrency = loo_JResp.StringOf("packages[i].insured_value.currency")
    li_Insured_valueAmount = loo_JResp.IntOf("packages[i].insured_value.amount")
    ls_Reference1 = loo_JResp.StringOf("packages[i].label_messages.reference1")
    ls_Reference2 = loo_JResp.StringOf("packages[i].label_messages.reference2")
    ls_Reference3 = loo_JResp.StringOf("packages[i].label_messages.reference3")
    ls_External_package_id = loo_JResp.StringOf("packages[i].external_package_id")
    i = i + 1
loop
i = 0
li_Count_i = loo_JResp.SizeOfArray("items")
do while i < li_Count_i
    loo_JResp.I = i
    i = i + 1
loop


destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp

Curl Command

curl -X POST
	-H "API-Key: {{API_KEY}}"
	-H "Content-Type: application/json"
	-d '{
	"rate_options": {
		"carrier_ids": [
			"{{stamps_com}}",
			"{{fedex}}",
			"{{ups}}"
		],
		"service_codes": [
			"usps_priority_mail",
			"fedex_ground",
			"ups_ground"
		]
	},
	"shipment": {
		"ship_from": {
			"name": "John Doe",
			"company_name": "Example Corp.",
			"address_line1": "4009 Marathon Blvd",
			"city_locality": "Austin",
			"state_province": "TX",
			"postal_code": "78756",
			"country_code": "US",
			"phone": "512-555-5555"
		},
		"ship_to": {
			"name": "Amanda Miller",
			"address_line1": "525 S Winchester Blvd",
			"city_locality": "San Jose",
			"state_province": "CA",
			"postal_code": "95128",
			"country_code": "US"
		},
		"packages": [
			{
				"weight": {
					"value": 17,
					"unit": "pound"
				},
				"dimensions": {
					"length": 36,
					"width": 12,
					"height": 24,
					"unit": "inch"
				}
			}
		]
	}
}'
https://api.shipengine.com/v1/rates

Postman Collection Item JSON

{
  "name": "Compare rates",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "let response = pm.response.json();",
          "",
          "if (response.rate_response.rates.length > 0) {",
          "    pm.collectionVariables.set(\"shipment_id\", response.shipment_id);",
          "    pm.collectionVariables.set(\"rate_id\", response.rate_response.rates[0].rate_id);",
          "}"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "type": "text",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n\t\"rate_options\": {\n\t\t\"carrier_ids\": [\n\t\t\t\"{{stamps_com}}\",\n\t\t\t\"{{fedex}}\",\n\t\t\t\"{{ups}}\"\n\t\t],\n\t\t\"service_codes\": [\n\t\t\t\"usps_priority_mail\",\n\t\t\t\"fedex_ground\",\n\t\t\t\"ups_ground\"\n\t\t]\n\t},\n\t\"shipment\": {\n\t\t\"ship_from\": {\n\t\t\t\"name\": \"John Doe\",\n\t\t\t\"company_name\": \"Example Corp.\",\n\t\t\t\"address_line1\": \"4009 Marathon Blvd\",\n\t\t\t\"city_locality\": \"Austin\",\n\t\t\t\"state_province\": \"TX\",\n\t\t\t\"postal_code\": \"78756\",\n\t\t\t\"country_code\": \"US\",\n\t\t\t\"phone\": \"512-555-5555\"\n\t\t},\n\t\t\"ship_to\": {\n\t\t\t\"name\": \"Amanda Miller\",\n\t\t\t\"address_line1\": \"525 S Winchester Blvd\",\n\t\t\t\"city_locality\": \"San Jose\",\n\t\t\t\"state_province\": \"CA\",\n\t\t\t\"postal_code\": \"95128\",\n\t\t\t\"country_code\": \"US\"\n\t\t},\n\t\t\"packages\": [\n\t\t\t{\n\t\t\t\t\"weight\": {\n\t\t\t\t\t\"value\": 17,\n\t\t\t\t\t\"unit\": \"pound\"\n\t\t\t\t},\n\t\t\t\t\"dimensions\": {\n\t\t\t\t\t\"length\": 36,\n\t\t\t\t\t\"width\": 12,\n\t\t\t\t\t\"height\": 24,\n\t\t\t\t\t\"unit\": \"inch\"\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n}"
    },
    "url": {
      "raw": "https://api.shipengine.com/v1/rates",
      "protocol": "https",
      "host": [
        "api",
        "shipengine",
        "com"
      ],
      "path": [
        "v1",
        "rates"
      ]
    },
    "description": "To compare rates across multiple carriers, provide the shipment details and the list of carriers that you want rates for."
  },
  "response": [
    {
      "name": "Compare rates",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "name": "Content-Type",
            "type": "text",
            "value": "application/json"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n\t\"rate_options\": {\n\t\t\"carrier_ids\": [\n\t\t\t\"{{stamps_com}}\",\n\t\t\t\"{{fedex}}\",\n\t\t\t\"{{ups}}\"\n\t\t],\n\t\t\"service_codes\": [\n\t\t\t\"usps_priority_mail\",\n\t\t\t\"fedex_ground\",\n\t\t\t\"ups_ground\"\n\t\t]\n\t},\n\t\"shipment\": {\n\t\t\"ship_from\": {\n\t\t\t\"name\": \"John Doe\",\n\t\t\t\"address_line1\": \"4009 Marathon Blvd\",\n\t\t\t\"city_locality\": \"Austin\",\n\t\t\t\"state_province\": \"TX\",\n\t\t\t\"postal_code\": \"78756\",\n\t\t\t\"country_code\": \"US\",\n\t\t\t\"phone\": \"512-555-5555\"\n\t\t},\n\t\t\"ship_to\": {\n\t\t\t\"name\": \"Amanda Miller\",\n\t\t\t\"address_line1\": \"525 S Winchester Blvd\",\n\t\t\t\"city_locality\": \"San Jose\",\n\t\t\t\"state_province\": \"CA\",\n\t\t\t\"postal_code\": \"95128\",\n\t\t\t\"country_code\": \"US\"\n\t\t},\n\t\t\"packages\": [\n\t\t\t{\n\t\t\t\t\"weight\": {\n\t\t\t\t\t\"value\": 17,\n\t\t\t\t\t\"unit\": \"pound\"\n\t\t\t\t},\n\t\t\t\t\"dimensions\": {\n\t\t\t\t\t\"length\": 36,\n\t\t\t\t\t\"width\": 12,\n\t\t\t\t\t\"height\": 24,\n\t\t\t\t\t\"unit\": \"inch\"\n\t\t\t\t}\n\t\t\t}\n\t\t]\n\t}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://api.shipengine.com/v1/rates",
          "protocol": "https",
          "host": [
            "api",
            "shipengine",
            "com"
          ],
          "path": [
            "v1",
            "rates"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Date",
          "value": "Tue, 17 Sep 2019 18:22:39 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json; charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "13902"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "https://www.shipengine.com"
        },
        {
          "key": "Vary",
          "value": "Origin"
        },
        {
          "key": "x-shipengine-requestid",
          "value": "45382f31-26c3-4d15-9673-4bcde0ccd77d"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"rate_response\": {\n        \"rates\": [\n            {\n                \"rate_id\": \"se-12443424\",\n                \"rate_type\": \"shipment\",\n                \"carrier_id\": \"se-121862\",\n                \"shipping_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 65.58\n                },\n                \"insurance_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"confirmation_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"other_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"zone\": null,\n                \"package_type\": null,\n                \"delivery_days\": 4,\n                \"guaranteed_service\": true,\n                \"estimated_delivery_date\": \"2019-09-23T23:00:00Z\",\n                \"carrier_delivery_days\": \"Monday 9/23 by 11:00 PM\",\n                \"ship_date\": \"2019-09-17T00:00:00Z\",\n                \"negotiated_rate\": false,\n                \"service_type\": \"UPS® Ground\",\n                \"service_code\": \"ups_ground\",\n                \"trackable\": true,\n                \"carrier_code\": \"ups\",\n                \"carrier_nickname\": \"ShipEngine Test Account - UPS\",\n                \"carrier_friendly_name\": \"UPS\",\n                \"validation_status\": \"valid\",\n                \"warning_messages\": [],\n                \"error_messages\": []\n            },\n            {\n                \"rate_id\": \"se-12443425\",\n                \"rate_type\": \"shipment\",\n                \"carrier_id\": \"se-121861\",\n                \"shipping_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 98.14\n                },\n                \"insurance_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"confirmation_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"other_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"zone\": 7,\n                \"package_type\": \"package\",\n                \"delivery_days\": 2,\n                \"guaranteed_service\": false,\n                \"estimated_delivery_date\": \"2019-09-19T00:00:00Z\",\n                \"carrier_delivery_days\": \"2\",\n                \"ship_date\": \"2019-09-17T00:00:00Z\",\n                \"negotiated_rate\": false,\n                \"service_type\": \"USPS Priority Mail\",\n                \"service_code\": \"usps_priority_mail\",\n                \"trackable\": true,\n                \"carrier_code\": \"stamps_com\",\n                \"carrier_nickname\": \"ShipEngine Test Account - Stamps.com\",\n                \"carrier_friendly_name\": \"Stamps.com\",\n                \"validation_status\": \"valid\",\n                \"warning_messages\": [],\n                \"error_messages\": []\n            },\n            {\n                \"rate_id\": \"se-12443426\",\n                \"rate_type\": \"shipment\",\n                \"carrier_id\": \"se-121861\",\n                \"shipping_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 12.72\n                },\n                \"insurance_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"confirmation_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"other_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"zone\": 7,\n                \"package_type\": \"medium_flat_rate_box\",\n                \"delivery_days\": 2,\n                \"guaranteed_service\": false,\n                \"estimated_delivery_date\": \"2019-09-19T00:00:00Z\",\n                \"carrier_delivery_days\": \"2\",\n                \"ship_date\": \"2019-09-17T00:00:00Z\",\n                \"negotiated_rate\": false,\n                \"service_type\": \"USPS Priority Mail\",\n                \"service_code\": \"usps_priority_mail\",\n                \"trackable\": true,\n                \"carrier_code\": \"stamps_com\",\n                \"carrier_nickname\": \"ShipEngine Test Account - Stamps.com\",\n                \"carrier_friendly_name\": \"Stamps.com\",\n                \"validation_status\": \"valid\",\n                \"warning_messages\": [],\n                \"error_messages\": []\n            },\n            {\n                \"rate_id\": \"se-12443427\",\n                \"rate_type\": \"shipment\",\n                \"carrier_id\": \"se-121861\",\n                \"shipping_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 6.98\n                },\n                \"insurance_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"confirmation_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"other_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"zone\": 7,\n                \"package_type\": \"small_flat_rate_box\",\n                \"delivery_days\": 2,\n                \"guaranteed_service\": false,\n                \"estimated_delivery_date\": \"2019-09-19T00:00:00Z\",\n                \"carrier_delivery_days\": \"2\",\n                \"ship_date\": \"2019-09-17T00:00:00Z\",\n                \"negotiated_rate\": false,\n                \"service_type\": \"USPS Priority Mail\",\n                \"service_code\": \"usps_priority_mail\",\n                \"trackable\": true,\n                \"carrier_code\": \"stamps_com\",\n                \"carrier_nickname\": \"ShipEngine Test Account - Stamps.com\",\n                \"carrier_friendly_name\": \"Stamps.com\",\n                \"validation_status\": \"valid\",\n                \"warning_messages\": [],\n                \"error_messages\": []\n            },\n            {\n                \"rate_id\": \"se-12443428\",\n                \"rate_type\": \"shipment\",\n                \"carrier_id\": \"se-121861\",\n                \"shipping_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 17.47\n                },\n                \"insurance_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"confirmation_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"other_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"zone\": 7,\n                \"package_type\": \"large_flat_rate_box\",\n                \"delivery_days\": 2,\n                \"guaranteed_service\": false,\n                \"estimated_delivery_date\": \"2019-09-19T00:00:00Z\",\n                \"carrier_delivery_days\": \"2\",\n                \"ship_date\": \"2019-09-17T00:00:00Z\",\n                \"negotiated_rate\": false,\n                \"service_type\": \"USPS Priority Mail\",\n                \"service_code\": \"usps_priority_mail\",\n                \"trackable\": true,\n                \"carrier_code\": \"stamps_com\",\n                \"carrier_nickname\": \"ShipEngine Test Account - Stamps.com\",\n                \"carrier_friendly_name\": \"Stamps.com\",\n                \"validation_status\": \"valid\",\n                \"warning_messages\": [],\n                \"error_messages\": []\n            },\n            {\n                \"rate_id\": \"se-12443429\",\n                \"rate_type\": \"shipment\",\n                \"carrier_id\": \"se-121861\",\n                \"shipping_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 6.48\n                },\n                \"insurance_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"confirmation_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"other_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"zone\": 7,\n                \"package_type\": \"flat_rate_envelope\",\n                \"delivery_days\": 2,\n                \"guaranteed_service\": false,\n                \"estimated_delivery_date\": \"2019-09-19T00:00:00Z\",\n                \"carrier_delivery_days\": \"2\",\n                \"ship_date\": \"2019-09-17T00:00:00Z\",\n                \"negotiated_rate\": false,\n                \"service_type\": \"USPS Priority Mail\",\n                \"service_code\": \"usps_priority_mail\",\n                \"trackable\": true,\n                \"carrier_code\": \"stamps_com\",\n                \"carrier_nickname\": \"ShipEngine Test Account - Stamps.com\",\n                \"carrier_friendly_name\": \"Stamps.com\",\n                \"validation_status\": \"has_warnings\",\n                \"warning_messages\": [\n                    \"Heads up! You've included custom dimensions for a package type with a standardized size. For more accurate rates, consider removing the dimensions for this shipment.\"\n                ],\n                \"error_messages\": []\n            },\n            {\n                \"rate_id\": \"se-12443430\",\n                \"rate_type\": \"shipment\",\n                \"carrier_id\": \"se-121861\",\n                \"shipping_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 7.03\n                },\n                \"insurance_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"confirmation_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"other_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"zone\": 7,\n                \"package_type\": \"flat_rate_padded_envelope\",\n                \"delivery_days\": 2,\n                \"guaranteed_service\": false,\n                \"estimated_delivery_date\": \"2019-09-19T00:00:00Z\",\n                \"carrier_delivery_days\": \"2\",\n                \"ship_date\": \"2019-09-17T00:00:00Z\",\n                \"negotiated_rate\": false,\n                \"service_type\": \"USPS Priority Mail\",\n                \"service_code\": \"usps_priority_mail\",\n                \"trackable\": true,\n                \"carrier_code\": \"stamps_com\",\n                \"carrier_nickname\": \"ShipEngine Test Account - Stamps.com\",\n                \"carrier_friendly_name\": \"Stamps.com\",\n                \"validation_status\": \"valid\",\n                \"warning_messages\": [],\n                \"error_messages\": []\n            },\n            {\n                \"rate_id\": \"se-12443431\",\n                \"rate_type\": \"shipment\",\n                \"carrier_id\": \"se-121861\",\n                \"shipping_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 6.78\n                },\n                \"insurance_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"confirmation_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"other_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"zone\": 7,\n                \"package_type\": \"flat_rate_legal_envelope\",\n                \"delivery_days\": 2,\n                \"guaranteed_service\": false,\n                \"estimated_delivery_date\": \"2019-09-19T00:00:00Z\",\n                \"carrier_delivery_days\": \"2\",\n                \"ship_date\": \"2019-09-17T00:00:00Z\",\n                \"negotiated_rate\": false,\n                \"service_type\": \"USPS Priority Mail\",\n                \"service_code\": \"usps_priority_mail\",\n                \"trackable\": true,\n                \"carrier_code\": \"stamps_com\",\n                \"carrier_nickname\": \"ShipEngine Test Account - Stamps.com\",\n                \"carrier_friendly_name\": \"Stamps.com\",\n                \"validation_status\": \"valid\",\n                \"warning_messages\": [],\n                \"error_messages\": []\n            },\n            {\n                \"rate_id\": \"se-12443432\",\n                \"rate_type\": \"shipment\",\n                \"carrier_id\": \"se-121863\",\n                \"shipping_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 58.37\n                },\n                \"insurance_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"confirmation_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 0\n                },\n                \"other_amount\": {\n                    \"currency\": \"usd\",\n                    \"amount\": 4.09\n                },\n                \"zone\": null,\n                \"package_type\": null,\n                \"delivery_days\": 3,\n                \"guaranteed_service\": false,\n                \"estimated_delivery_date\": \"2019-09-20T00:00:00Z\",\n                \"carrier_delivery_days\": \"3\",\n                \"ship_date\": \"2019-09-17T00:00:00Z\",\n                \"negotiated_rate\": false,\n                \"service_type\": \"FedEx Ground®\",\n                \"service_code\": \"fedex_ground\",\n                \"trackable\": true,\n                \"carrier_code\": \"fedex\",\n                \"carrier_nickname\": \"ShipEngine Test Account - FedEx\",\n                \"carrier_friendly_name\": \"FedEx\",\n                \"validation_status\": \"valid\",\n                \"warning_messages\": [],\n                \"error_messages\": []\n            }\n        ],\n        \"invalid_rates\": [],\n        \"rate_request_id\": \"se-1426058\",\n        \"shipment_id\": \"se-4133871\",\n        \"created_at\": \"2019-09-17T18:22:40.010591Z\",\n        \"status\": \"completed\",\n        \"errors\": []\n    },\n    \"shipment_id\": \"se-4133871\",\n    \"carrier_id\": null,\n    \"service_code\": null,\n    \"external_shipment_id\": null,\n    \"ship_date\": \"2019-09-17T00:00:00Z\",\n    \"created_at\": \"2019-09-17T18:22:39.317Z\",\n    \"modified_at\": \"2019-09-17T18:22:39.317Z\",\n    \"shipment_status\": \"pending\",\n    \"ship_to\": {\n        \"name\": \"Amanda Miller\",\n        \"phone\": null,\n        \"company_name\": null,\n        \"address_line1\": \"525 S Winchester Blvd\",\n        \"address_line2\": null,\n        \"address_line3\": null,\n        \"city_locality\": \"San Jose\",\n        \"state_province\": \"CA\",\n        \"postal_code\": \"95128\",\n        \"country_code\": \"US\",\n        \"address_residential_indicator\": \"unknown\"\n    },\n    \"ship_from\": {\n        \"name\": \"John Doe\",\n        \"phone\": \"512-555-5555\",\n        \"company_name\": null,\n        \"address_line1\": \"4009 Marathon Blvd\",\n        \"address_line2\": null,\n        \"address_line3\": null,\n        \"city_locality\": \"Austin\",\n        \"state_province\": \"TX\",\n        \"postal_code\": \"78756\",\n        \"country_code\": \"US\",\n        \"address_residential_indicator\": \"unknown\"\n    },\n    \"warehouse_id\": null,\n    \"return_to\": {\n        \"name\": \"John Doe\",\n        \"phone\": \"512-555-5555\",\n        \"company_name\": null,\n        \"address_line1\": \"4009 Marathon Blvd\",\n        \"address_line2\": null,\n        \"address_line3\": null,\n        \"city_locality\": \"Austin\",\n        \"state_province\": \"TX\",\n        \"postal_code\": \"78756\",\n        \"country_code\": \"US\",\n        \"address_residential_indicator\": \"unknown\"\n    },\n    \"confirmation\": \"none\",\n    \"customs\": null,\n    \"external_order_id\": null,\n    \"order_source_code\": null,\n    \"advanced_options\": {\n        \"bill_to_account\": null,\n        \"bill_to_country_code\": null,\n        \"bill_to_party\": null,\n        \"bill_to_postal_code\": null,\n        \"contains_alcohol\": false,\n        \"delivered_duty_paid\": false,\n        \"non_machinable\": false,\n        \"saturday_delivery\": false,\n        \"dry_ice\": false,\n        \"dry_ice_weight\": null,\n        \"freight_class\": null,\n        \"custom_field1\": null,\n        \"custom_field2\": null,\n        \"custom_field3\": null\n    },\n    \"insurance_provider\": \"none\",\n    \"tags\": [],\n    \"packages\": [\n        {\n            \"package_code\": \"package\",\n            \"weight\": {\n                \"value\": 17,\n                \"unit\": \"pound\"\n            },\n            \"dimensions\": {\n                \"unit\": \"inch\",\n                \"length\": 36,\n                \"width\": 12,\n                \"height\": 24\n            },\n            \"insured_value\": {\n                \"currency\": \"usd\",\n                \"amount\": 0\n            },\n            \"label_messages\": {\n                \"reference1\": null,\n                \"reference2\": null,\n                \"reference3\": null\n            },\n            \"external_package_id\": null\n        }\n    ],\n    \"total_weight\": {\n        \"value\": 17,\n        \"unit\": \"pound\"\n    },\n    \"items\": []\n}"
    }
  ]
}