Chilkat Online Tools

DataFlex / ShipEngine Walkthrough / Compare rates for a shipment

Back to Collection Items

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Handle hoHttp
    Boolean iSuccess
    Variant vJson
    Handle hoJson
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sRate_id
    String sRate_type
    String sV_Currency
    String sAmount
    String sInsurance_amountCurrency
    Integer iInsurance_amountAmount
    String sConfirmation_amountCurrency
    Integer iConfirmation_amountAmount
    String sOther_amountCurrency
    Integer iOther_amountAmount
    String sZone
    String sPackage_type
    Integer iDelivery_days
    Boolean iGuaranteed_service
    String sEstimated_delivery_date
    String sCarrier_delivery_days
    Boolean iNegotiated_rate
    String sService_type
    Boolean iTrackable
    String sCarrier_code
    String sCarrier_nickname
    String sCarrier_friendly_name
    String sValidation_status
    Integer j
    Integer iCount_j
    String sStrVal
    String sPackage_code
    Integer iWeightValue
    String sWeightUnit
    String sDimensionsUnit
    Integer iLength
    Integer iWidth
    Integer iHeight
    String sInsured_valueCurrency
    Integer iInsured_valueAmount
    String sReference1
    String sReference2
    String sReference3
    String sExternal_package_id
    String sRate_request_id
    String sShipment_id
    String sCreated_at
    String sStatus
    String sShipment_id
    String sCarrier_id
    String sService_code
    String sExternal_shipment_id
    String sShip_date
    String sCreated_at
    String sModified_at
    String sShipment_status
    String sName
    String sPhone
    String sCompany_name
    String sAddress_line1
    String sAddress_line2
    String sAddress_line3
    String sCity_locality
    String sState_province
    String sPostal_code
    String sCountry_code
    String sAddress_residential_indicator
    String sShip_fromName
    String sShip_fromPhone
    String sShip_fromCompany_name
    String sShip_fromAddress_line1
    String sShip_fromAddress_line2
    String sShip_fromAddress_line3
    String sShip_fromCity_locality
    String sShip_fromState_province
    String sShip_fromPostal_code
    String sShip_fromCountry_code
    String sShip_fromAddress_residential_indicator
    String sWarehouse_id
    String sReturn_toName
    String sReturn_toPhone
    String sReturn_toCompany_name
    String sReturn_toAddress_line1
    String sReturn_toAddress_line2
    String sReturn_toAddress_line3
    String sReturn_toCity_locality
    String sReturn_toState_province
    String sReturn_toPostal_code
    String sReturn_toCountry_code
    String sReturn_toAddress_residential_indicator
    String sConfirmation
    String sCustoms
    String sExternal_order_id
    String sOrder_source_code
    String sBill_to_account
    String sBill_to_country_code
    String sBill_to_party
    String sBill_to_postal_code
    Boolean iContains_alcohol
    Boolean iDelivered_duty_paid
    Boolean iNon_machinable
    Boolean iSaturday_delivery
    Boolean iDry_ice
    String sDry_ice_weight
    String sFreight_class
    String sCustom_field1
    String sCustom_field2
    String sCustom_field3
    String sInsurance_provider
    Integer iValue
    String sUnit
    Integer i
    Integer iCount_i
    String sTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End

    // 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_id": "{{shipment_id}}"
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateString Of hoJson "rate_options.carrier_ids[0]" "{{stamps_com}}" To iSuccess
    Get ComUpdateString Of hoJson "rate_options.carrier_ids[1]" "{{fedex}}" To iSuccess
    Get ComUpdateString Of hoJson "rate_options.carrier_ids[2]" "{{ups}}" To iSuccess
    Get ComUpdateString Of hoJson "rate_options.service_codes[0]" "usps_priority_mail" To iSuccess
    Get ComUpdateString Of hoJson "rate_options.service_codes[1]" "fedex_ground" To iSuccess
    Get ComUpdateString Of hoJson "rate_options.service_codes[2]" "ups_ground" To iSuccess
    Get ComUpdateString Of hoJson "shipment_id" "{{shipment_id}}" To iSuccess

    Send ComSetRequestHeader To hoHttp "API-Key" "{{API_KEY}}"
    Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"

    Get pvComObject of hoJson to vJson
    Get ComPostJson3 Of hoHttp "https://api.shipengine.com/v1/rates" "application/json" vJson To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess

    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Send Destroy of hoResp
        Procedure_Return
    End

    Send Destroy of hoResp

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

    // {
    //   "rate_response": {
    //     "rates": [
    //       {
    //         "rate_id": "se-12444425",
    //         "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-12444426",
    //         "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-12444427",
    //         "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-12444428",
    //         "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-12444429",
    //         "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-12444430",
    //         "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-12444431",
    //         "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-12444432",
    //         "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-12444433",
    //         "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-1426242",
    //     "shipment_id": "se-4134271",
    //     "created_at": "2019-09-17T18:33:10.7692662Z",
    //     "status": "completed",
    //     "errors": [
    //     ]
    //   },
    //   "shipment_id": "se-4134271",
    //   "carrier_id": null,
    //   "service_code": null,
    //   "external_shipment_id": null,
    //   "ship_date": "2019-09-17T00:00:00Z",
    //   "created_at": "2019-09-17T18:31:35.03Z",
    //   "modified_at": "2019-09-17T18:31:35.03Z",
    //   "shipment_status": "pending",
    //   "ship_to": {
    //     "name": "Amanda Miller",
    //     "phone": null,
    //     "company_name": null,
    //     "address_line1": "525 S WINCHESTER BLVD",
    //     "address_line2": "",
    //     "address_line3": null,
    //     "city_locality": "SAN JOSE",
    //     "state_province": "CA",
    //     "postal_code": "95128-2537",
    //     "country_code": "US",
    //     "address_residential_indicator": "no"
    //   },
    //   "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

    Get ComStringOf Of hoJResp "rate_response.rate_request_id" To sRate_request_id
    Get ComStringOf Of hoJResp "rate_response.shipment_id" To sShipment_id
    Get ComStringOf Of hoJResp "rate_response.created_at" To sCreated_at
    Get ComStringOf Of hoJResp "rate_response.status" To sStatus
    Get ComStringOf Of hoJResp "shipment_id" To sShipment_id
    Get ComStringOf Of hoJResp "carrier_id" To sCarrier_id
    Get ComStringOf Of hoJResp "service_code" To sService_code
    Get ComStringOf Of hoJResp "external_shipment_id" To sExternal_shipment_id
    Get ComStringOf Of hoJResp "ship_date" To sShip_date
    Get ComStringOf Of hoJResp "created_at" To sCreated_at
    Get ComStringOf Of hoJResp "modified_at" To sModified_at
    Get ComStringOf Of hoJResp "shipment_status" To sShipment_status
    Get ComStringOf Of hoJResp "ship_to.name" To sName
    Get ComStringOf Of hoJResp "ship_to.phone" To sPhone
    Get ComStringOf Of hoJResp "ship_to.company_name" To sCompany_name
    Get ComStringOf Of hoJResp "ship_to.address_line1" To sAddress_line1
    Get ComStringOf Of hoJResp "ship_to.address_line2" To sAddress_line2
    Get ComStringOf Of hoJResp "ship_to.address_line3" To sAddress_line3
    Get ComStringOf Of hoJResp "ship_to.city_locality" To sCity_locality
    Get ComStringOf Of hoJResp "ship_to.state_province" To sState_province
    Get ComStringOf Of hoJResp "ship_to.postal_code" To sPostal_code
    Get ComStringOf Of hoJResp "ship_to.country_code" To sCountry_code
    Get ComStringOf Of hoJResp "ship_to.address_residential_indicator" To sAddress_residential_indicator
    Get ComStringOf Of hoJResp "ship_from.name" To sShip_fromName
    Get ComStringOf Of hoJResp "ship_from.phone" To sShip_fromPhone
    Get ComStringOf Of hoJResp "ship_from.company_name" To sShip_fromCompany_name
    Get ComStringOf Of hoJResp "ship_from.address_line1" To sShip_fromAddress_line1
    Get ComStringOf Of hoJResp "ship_from.address_line2" To sShip_fromAddress_line2
    Get ComStringOf Of hoJResp "ship_from.address_line3" To sShip_fromAddress_line3
    Get ComStringOf Of hoJResp "ship_from.city_locality" To sShip_fromCity_locality
    Get ComStringOf Of hoJResp "ship_from.state_province" To sShip_fromState_province
    Get ComStringOf Of hoJResp "ship_from.postal_code" To sShip_fromPostal_code
    Get ComStringOf Of hoJResp "ship_from.country_code" To sShip_fromCountry_code
    Get ComStringOf Of hoJResp "ship_from.address_residential_indicator" To sShip_fromAddress_residential_indicator
    Get ComStringOf Of hoJResp "warehouse_id" To sWarehouse_id
    Get ComStringOf Of hoJResp "return_to.name" To sReturn_toName
    Get ComStringOf Of hoJResp "return_to.phone" To sReturn_toPhone
    Get ComStringOf Of hoJResp "return_to.company_name" To sReturn_toCompany_name
    Get ComStringOf Of hoJResp "return_to.address_line1" To sReturn_toAddress_line1
    Get ComStringOf Of hoJResp "return_to.address_line2" To sReturn_toAddress_line2
    Get ComStringOf Of hoJResp "return_to.address_line3" To sReturn_toAddress_line3
    Get ComStringOf Of hoJResp "return_to.city_locality" To sReturn_toCity_locality
    Get ComStringOf Of hoJResp "return_to.state_province" To sReturn_toState_province
    Get ComStringOf Of hoJResp "return_to.postal_code" To sReturn_toPostal_code
    Get ComStringOf Of hoJResp "return_to.country_code" To sReturn_toCountry_code
    Get ComStringOf Of hoJResp "return_to.address_residential_indicator" To sReturn_toAddress_residential_indicator
    Get ComStringOf Of hoJResp "confirmation" To sConfirmation
    Get ComStringOf Of hoJResp "customs" To sCustoms
    Get ComStringOf Of hoJResp "external_order_id" To sExternal_order_id
    Get ComStringOf Of hoJResp "order_source_code" To sOrder_source_code
    Get ComStringOf Of hoJResp "advanced_options.bill_to_account" To sBill_to_account
    Get ComStringOf Of hoJResp "advanced_options.bill_to_country_code" To sBill_to_country_code
    Get ComStringOf Of hoJResp "advanced_options.bill_to_party" To sBill_to_party
    Get ComStringOf Of hoJResp "advanced_options.bill_to_postal_code" To sBill_to_postal_code
    Get ComBoolOf Of hoJResp "advanced_options.contains_alcohol" To iContains_alcohol
    Get ComBoolOf Of hoJResp "advanced_options.delivered_duty_paid" To iDelivered_duty_paid
    Get ComBoolOf Of hoJResp "advanced_options.non_machinable" To iNon_machinable
    Get ComBoolOf Of hoJResp "advanced_options.saturday_delivery" To iSaturday_delivery
    Get ComBoolOf Of hoJResp "advanced_options.dry_ice" To iDry_ice
    Get ComStringOf Of hoJResp "advanced_options.dry_ice_weight" To sDry_ice_weight
    Get ComStringOf Of hoJResp "advanced_options.freight_class" To sFreight_class
    Get ComStringOf Of hoJResp "advanced_options.custom_field1" To sCustom_field1
    Get ComStringOf Of hoJResp "advanced_options.custom_field2" To sCustom_field2
    Get ComStringOf Of hoJResp "advanced_options.custom_field3" To sCustom_field3
    Get ComStringOf Of hoJResp "insurance_provider" To sInsurance_provider
    Get ComIntOf Of hoJResp "total_weight.value" To iValue
    Get ComStringOf Of hoJResp "total_weight.unit" To sUnit
    Move 0 To i
    Get ComSizeOfArray Of hoJResp "rate_response.rates" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "rate_response.rates[i].rate_id" To sRate_id
        Get ComStringOf Of hoJResp "rate_response.rates[i].rate_type" To sRate_type
        Get ComStringOf Of hoJResp "rate_response.rates[i].carrier_id" To sCarrier_id
        Get ComStringOf Of hoJResp "rate_response.rates[i].shipping_amount.currency" To sV_Currency
        Get ComStringOf Of hoJResp "rate_response.rates[i].shipping_amount.amount" To sAmount
        Get ComStringOf Of hoJResp "rate_response.rates[i].insurance_amount.currency" To sInsurance_amountCurrency
        Get ComIntOf Of hoJResp "rate_response.rates[i].insurance_amount.amount" To iInsurance_amountAmount
        Get ComStringOf Of hoJResp "rate_response.rates[i].confirmation_amount.currency" To sConfirmation_amountCurrency
        Get ComIntOf Of hoJResp "rate_response.rates[i].confirmation_amount.amount" To iConfirmation_amountAmount
        Get ComStringOf Of hoJResp "rate_response.rates[i].other_amount.currency" To sOther_amountCurrency
        Get ComIntOf Of hoJResp "rate_response.rates[i].other_amount.amount" To iOther_amountAmount
        Get ComStringOf Of hoJResp "rate_response.rates[i].zone" To sZone
        Get ComStringOf Of hoJResp "rate_response.rates[i].package_type" To sPackage_type
        Get ComIntOf Of hoJResp "rate_response.rates[i].delivery_days" To iDelivery_days
        Get ComBoolOf Of hoJResp "rate_response.rates[i].guaranteed_service" To iGuaranteed_service
        Get ComStringOf Of hoJResp "rate_response.rates[i].estimated_delivery_date" To sEstimated_delivery_date
        Get ComStringOf Of hoJResp "rate_response.rates[i].carrier_delivery_days" To sCarrier_delivery_days
        Get ComStringOf Of hoJResp "rate_response.rates[i].ship_date" To sShip_date
        Get ComBoolOf Of hoJResp "rate_response.rates[i].negotiated_rate" To iNegotiated_rate
        Get ComStringOf Of hoJResp "rate_response.rates[i].service_type" To sService_type
        Get ComStringOf Of hoJResp "rate_response.rates[i].service_code" To sService_code
        Get ComBoolOf Of hoJResp "rate_response.rates[i].trackable" To iTrackable
        Get ComStringOf Of hoJResp "rate_response.rates[i].carrier_code" To sCarrier_code
        Get ComStringOf Of hoJResp "rate_response.rates[i].carrier_nickname" To sCarrier_nickname
        Get ComStringOf Of hoJResp "rate_response.rates[i].carrier_friendly_name" To sCarrier_friendly_name
        Get ComStringOf Of hoJResp "rate_response.rates[i].validation_status" To sValidation_status
        Move 0 To j
        Get ComSizeOfArray Of hoJResp "rate_response.rates[i].warning_messages" To iCount_j
        While (j < iCount_j)
            Set ComJ Of hoJResp To j
            Get ComStringOf Of hoJResp "rate_response.rates[i].warning_messages[j]" To sStrVal
            Move (j + 1) To j
        Loop

        Move 0 To j
        Get ComSizeOfArray Of hoJResp "rate_response.rates[i].error_messages" To iCount_j
        While (j < iCount_j)
            Set ComJ Of hoJResp To j
            Move (j + 1) To j
        Loop

        Move (i + 1) To i
    Loop

    Move 0 To i
    Get ComSizeOfArray Of hoJResp "rate_response.invalid_rates" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Move (i + 1) To i
    Loop

    Move 0 To i
    Get ComSizeOfArray Of hoJResp "rate_response.errors" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Move (i + 1) To i
    Loop

    Move 0 To i
    Get ComSizeOfArray Of hoJResp "tags" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Move (i + 1) To i
    Loop

    Move 0 To i
    Get ComSizeOfArray Of hoJResp "packages" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Get ComStringOf Of hoJResp "packages[i].package_code" To sPackage_code
        Get ComIntOf Of hoJResp "packages[i].weight.value" To iWeightValue
        Get ComStringOf Of hoJResp "packages[i].weight.unit" To sWeightUnit
        Get ComStringOf Of hoJResp "packages[i].dimensions.unit" To sDimensionsUnit
        Get ComIntOf Of hoJResp "packages[i].dimensions.length" To iLength
        Get ComIntOf Of hoJResp "packages[i].dimensions.width" To iWidth
        Get ComIntOf Of hoJResp "packages[i].dimensions.height" To iHeight
        Get ComStringOf Of hoJResp "packages[i].insured_value.currency" To sInsured_valueCurrency
        Get ComIntOf Of hoJResp "packages[i].insured_value.amount" To iInsured_valueAmount
        Get ComStringOf Of hoJResp "packages[i].label_messages.reference1" To sReference1
        Get ComStringOf Of hoJResp "packages[i].label_messages.reference2" To sReference2
        Get ComStringOf Of hoJResp "packages[i].label_messages.reference3" To sReference3
        Get ComStringOf Of hoJResp "packages[i].external_package_id" To sExternal_package_id
        Move (i + 1) To i
    Loop

    Move 0 To i
    Get ComSizeOfArray Of hoJResp "items" To iCount_i
    While (i < iCount_i)
        Set ComI Of hoJResp To i
        Move (i + 1) To i
    Loop



End_Procedure

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_id": "{{shipment_id}}"
}'
https://api.shipengine.com/v1/rates

Postman Collection Item JSON

{
  "name": "Compare rates for a shipment",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "let response = pm.response.json();",
          "",
          "if (response.rate_response.rates.length > 0) {",
          "    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_id\": \"{{shipment_id}}\"\n}"
    },
    "url": {
      "raw": "https://api.shipengine.com/v1/rates",
      "protocol": "https",
      "host": [
        "api",
        "shipengine",
        "com"
      ],
      "path": [
        "v1",
        "rates"
      ]
    },
    "description": "If you've already created a shipment in ShipEngine, then you can easily compare rates using the `shipment_id`."
  },
  "response": [
    {
      "name": "Compare rates for a shipment",
      "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_id\": \"{{shipment_id}}\"\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:33:10 GMT"
        },
        {
          "key": "Content-Type",
          "value": "application/json; charset=utf-8"
        },
        {
          "key": "Content-Length",
          "value": "13899"
        },
        {
          "key": "Connection",
          "value": "keep-alive"
        },
        {
          "key": "Access-Control-Allow-Origin",
          "value": "https://www.shipengine.com"
        },
        {
          "key": "Vary",
          "value": "Origin"
        },
        {
          "key": "x-shipengine-requestid",
          "value": "5824483d-bb0d-4dfd-bb6c-86f657a87119"
        }
      ],
      "cookie": [
      ],
      "body": "{\n    \"rate_response\": {\n        \"rates\": [\n            {\n                \"rate_id\": \"se-12444425\",\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-12444426\",\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-12444427\",\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-12444428\",\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-12444429\",\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-12444430\",\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-12444431\",\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-12444432\",\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-12444433\",\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-1426242\",\n        \"shipment_id\": \"se-4134271\",\n        \"created_at\": \"2019-09-17T18:33:10.7692662Z\",\n        \"status\": \"completed\",\n        \"errors\": []\n    },\n    \"shipment_id\": \"se-4134271\",\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:31:35.03Z\",\n    \"modified_at\": \"2019-09-17T18:31:35.03Z\",\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\": \"\",\n        \"address_line3\": null,\n        \"city_locality\": \"SAN JOSE\",\n        \"state_province\": \"CA\",\n        \"postal_code\": \"95128-2537\",\n        \"country_code\": \"US\",\n        \"address_residential_indicator\": \"no\"\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}"
    }
  ]
}