Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// 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": {
// "validate_address": "validate_and_clean",
// "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 Winchester",
// "postal_code": "95128",
// "country_code": "US"
// },
// "packages": [
// {
// "weight": {
// "value": 17,
// "unit": "pound"
// },
// "dimensions": {
// "length": 36,
// "width": 12,
// "height": 24,
// "unit": "inch"
// }
// }
// ]
// }
// }
let json = CkoJsonObject()!
json.update("rate_options.carrier_ids[0]", value: "{{stamps_com}}")
json.update("rate_options.carrier_ids[1]", value: "{{fedex}}")
json.update("rate_options.carrier_ids[2]", value: "{{ups}}")
json.update("rate_options.service_codes[0]", value: "usps_priority_mail")
json.update("rate_options.service_codes[1]", value: "fedex_ground")
json.update("rate_options.service_codes[2]", value: "ups_ground")
json.update("shipment.validate_address", value: "validate_and_clean")
json.update("shipment.ship_from.name", value: "John Doe")
json.update("shipment.ship_from.company_name", value: "Example Corp.")
json.update("shipment.ship_from.address_line1", value: "4009 Marathon Blvd")
json.update("shipment.ship_from.city_locality", value: "Austin")
json.update("shipment.ship_from.state_province", value: "TX")
json.update("shipment.ship_from.postal_code", value: "78756")
json.update("shipment.ship_from.country_code", value: "US")
json.update("shipment.ship_from.phone", value: "512-555-5555")
json.update("shipment.ship_to.name", value: "Amanda Miller")
json.update("shipment.ship_to.address_line1", value: "525 Winchester")
json.update("shipment.ship_to.postal_code", value: "95128")
json.update("shipment.ship_to.country_code", value: "US")
json.updateInt("shipment.packages[0].weight.value", value: 17)
json.update("shipment.packages[0].weight.unit", value: "pound")
json.updateInt("shipment.packages[0].dimensions.length", value: 36)
json.updateInt("shipment.packages[0].dimensions.width", value: 12)
json.updateInt("shipment.packages[0].dimensions.height", value: 24)
json.update("shipment.packages[0].dimensions.unit", value: "inch")
http.setRequestHeader("API-Key", value: "{{API_KEY}}")
http.setRequestHeader("Content-Type", value: "application/json")
var resp: CkoHttpResponse? = http.postJson3("https://api.shipengine.com/v1/rates", contentType: "application/json", json: json)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
let sbResponseBody = CkoStringBuilder()!
resp!.getBodySb(sbResponseBody)
let jResp = CkoJsonObject()!
jResp.loadSb(sbResponseBody)
jResp.emitCompact = false
print("Response Body:")
print("\(jResp.emit()!)")
var respStatusCode: Int = resp!.statusCode.intValue
print("Response Status Code = \(respStatusCode)")
if respStatusCode >= 400 {
print("Response Header:")
print("\(resp!.header!)")
print("Failed.")
resp = nil
return
}
resp = nil
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "rate_response": {
// "rates": [
// {
// "rate_id": "se-12502689",
// "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-24T23:00:00Z",
// "carrier_delivery_days": "Tuesday 9/24 by 11:00 PM",
// "ship_date": "2019-09-18T00: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-12502690",
// "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-20T00:00:00Z",
// "carrier_delivery_days": "2",
// "ship_date": "2019-09-18T00: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-12502691",
// "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-20T00:00:00Z",
// "carrier_delivery_days": "2",
// "ship_date": "2019-09-18T00: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-12502692",
// "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-20T00:00:00Z",
// "carrier_delivery_days": "2",
// "ship_date": "2019-09-18T00: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-12502693",
// "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-20T00:00:00Z",
// "carrier_delivery_days": "2",
// "ship_date": "2019-09-18T00: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-12502694",
// "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-20T00:00:00Z",
// "carrier_delivery_days": "2",
// "ship_date": "2019-09-18T00: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-12502695",
// "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-20T00:00:00Z",
// "carrier_delivery_days": "2",
// "ship_date": "2019-09-18T00: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-12502696",
// "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-20T00:00:00Z",
// "carrier_delivery_days": "2",
// "ship_date": "2019-09-18T00: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-12502697",
// "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-21T00:00:00Z",
// "carrier_delivery_days": "3",
// "ship_date": "2019-09-18T00: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-1437547",
// "shipment_id": "se-4160010",
// "created_at": "2019-09-18T16:07:21.3769021Z",
// "status": "completed",
// "errors": [
// ]
// },
// "shipment_id": "se-4160010",
// "carrier_id": null,
// "service_code": null,
// "external_shipment_id": null,
// "ship_date": "2019-09-18T00:00:00Z",
// "created_at": "2019-09-18T16:07:20.62Z",
// "modified_at": "2019-09-18T16:07:20.62Z",
// "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": "Example Corp.",
// "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": "Example Corp.",
// "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
var rate_id: String?
var rate_type: String?
var v_Currency: String?
var Amount: String?
var insurance_amountCurrency: String?
var insurance_amountAmount: Int
var confirmation_amountCurrency: String?
var confirmation_amountAmount: Int
var other_amountCurrency: String?
var other_amountAmount: Int
var zone: String?
var package_type: String?
var delivery_days: Int
var guaranteed_service: Bool
var estimated_delivery_date: String?
var carrier_delivery_days: String?
var negotiated_rate: Bool
var service_type: String?
var trackable: Bool
var carrier_code: String?
var carrier_nickname: String?
var carrier_friendly_name: String?
var validation_status: String?
var j: Int
var count_j: Int
var strVal: String?
var package_code: String?
var weightValue: Int
var weightUnit: String?
var dimensionsUnit: String?
var Length: Int
var Width: Int
var Height: Int
var insured_valueCurrency: String?
var insured_valueAmount: Int
var Reference1: String?
var Reference2: String?
var Reference3: String?
var external_package_id: String?
var Rate_request_id: String? = jResp.string(of: "rate_response.rate_request_id")
var Shipment_id: String? = jResp.string(of: "rate_response.shipment_id")
var Created_at: String? = jResp.string(of: "rate_response.created_at")
var Status: String? = jResp.string(of: "rate_response.status")
var shipment_id: String? = jResp.string(of: "shipment_id")
var carrier_id: String? = jResp.string(of: "carrier_id")
var service_code: String? = jResp.string(of: "service_code")
var external_shipment_id: String? = jResp.string(of: "external_shipment_id")
var ship_date: String? = jResp.string(of: "ship_date")
var created_at: String? = jResp.string(of: "created_at")
var modified_at: String? = jResp.string(of: "modified_at")
var shipment_status: String? = jResp.string(of: "shipment_status")
var Name: String? = jResp.string(of: "ship_to.name")
var Phone: String? = jResp.string(of: "ship_to.phone")
var Company_name: String? = jResp.string(of: "ship_to.company_name")
var Address_line1: String? = jResp.string(of: "ship_to.address_line1")
var Address_line2: String? = jResp.string(of: "ship_to.address_line2")
var Address_line3: String? = jResp.string(of: "ship_to.address_line3")
var City_locality: String? = jResp.string(of: "ship_to.city_locality")
var State_province: String? = jResp.string(of: "ship_to.state_province")
var Postal_code: String? = jResp.string(of: "ship_to.postal_code")
var Country_code: String? = jResp.string(of: "ship_to.country_code")
var Address_residential_indicator: String? = jResp.string(of: "ship_to.address_residential_indicator")
var ship_fromName: String? = jResp.string(of: "ship_from.name")
var ship_fromPhone: String? = jResp.string(of: "ship_from.phone")
var ship_fromCompany_name: String? = jResp.string(of: "ship_from.company_name")
var ship_fromAddress_line1: String? = jResp.string(of: "ship_from.address_line1")
var ship_fromAddress_line2: String? = jResp.string(of: "ship_from.address_line2")
var ship_fromAddress_line3: String? = jResp.string(of: "ship_from.address_line3")
var ship_fromCity_locality: String? = jResp.string(of: "ship_from.city_locality")
var ship_fromState_province: String? = jResp.string(of: "ship_from.state_province")
var ship_fromPostal_code: String? = jResp.string(of: "ship_from.postal_code")
var ship_fromCountry_code: String? = jResp.string(of: "ship_from.country_code")
var ship_fromAddress_residential_indicator: String? = jResp.string(of: "ship_from.address_residential_indicator")
var warehouse_id: String? = jResp.string(of: "warehouse_id")
var return_toName: String? = jResp.string(of: "return_to.name")
var return_toPhone: String? = jResp.string(of: "return_to.phone")
var return_toCompany_name: String? = jResp.string(of: "return_to.company_name")
var return_toAddress_line1: String? = jResp.string(of: "return_to.address_line1")
var return_toAddress_line2: String? = jResp.string(of: "return_to.address_line2")
var return_toAddress_line3: String? = jResp.string(of: "return_to.address_line3")
var return_toCity_locality: String? = jResp.string(of: "return_to.city_locality")
var return_toState_province: String? = jResp.string(of: "return_to.state_province")
var return_toPostal_code: String? = jResp.string(of: "return_to.postal_code")
var return_toCountry_code: String? = jResp.string(of: "return_to.country_code")
var return_toAddress_residential_indicator: String? = jResp.string(of: "return_to.address_residential_indicator")
var confirmation: String? = jResp.string(of: "confirmation")
var customs: String? = jResp.string(of: "customs")
var external_order_id: String? = jResp.string(of: "external_order_id")
var order_source_code: String? = jResp.string(of: "order_source_code")
var Bill_to_account: String? = jResp.string(of: "advanced_options.bill_to_account")
var Bill_to_country_code: String? = jResp.string(of: "advanced_options.bill_to_country_code")
var Bill_to_party: String? = jResp.string(of: "advanced_options.bill_to_party")
var Bill_to_postal_code: String? = jResp.string(of: "advanced_options.bill_to_postal_code")
var Contains_alcohol: Bool = jResp.bool(of: "advanced_options.contains_alcohol")
var Delivered_duty_paid: Bool = jResp.bool(of: "advanced_options.delivered_duty_paid")
var Non_machinable: Bool = jResp.bool(of: "advanced_options.non_machinable")
var Saturday_delivery: Bool = jResp.bool(of: "advanced_options.saturday_delivery")
var Dry_ice: Bool = jResp.bool(of: "advanced_options.dry_ice")
var Dry_ice_weight: String? = jResp.string(of: "advanced_options.dry_ice_weight")
var Freight_class: String? = jResp.string(of: "advanced_options.freight_class")
var Custom_field1: String? = jResp.string(of: "advanced_options.custom_field1")
var Custom_field2: String? = jResp.string(of: "advanced_options.custom_field2")
var Custom_field3: String? = jResp.string(of: "advanced_options.custom_field3")
var insurance_provider: String? = jResp.string(of: "insurance_provider")
var Value: Int = jResp.int(of: "total_weight.value").intValue
var Unit: String? = jResp.string(of: "total_weight.unit")
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "rate_response.rates").intValue
while i < count_i {
jResp.i = i
rate_id = jResp.string(of: "rate_response.rates[i].rate_id")
rate_type = jResp.string(of: "rate_response.rates[i].rate_type")
carrier_id = jResp.string(of: "rate_response.rates[i].carrier_id")
v_Currency = jResp.string(of: "rate_response.rates[i].shipping_amount.currency")
Amount = jResp.string(of: "rate_response.rates[i].shipping_amount.amount")
insurance_amountCurrency = jResp.string(of: "rate_response.rates[i].insurance_amount.currency")
insurance_amountAmount = jResp.int(of: "rate_response.rates[i].insurance_amount.amount").intValue
confirmation_amountCurrency = jResp.string(of: "rate_response.rates[i].confirmation_amount.currency")
confirmation_amountAmount = jResp.int(of: "rate_response.rates[i].confirmation_amount.amount").intValue
other_amountCurrency = jResp.string(of: "rate_response.rates[i].other_amount.currency")
other_amountAmount = jResp.int(of: "rate_response.rates[i].other_amount.amount").intValue
zone = jResp.string(of: "rate_response.rates[i].zone")
package_type = jResp.string(of: "rate_response.rates[i].package_type")
delivery_days = jResp.int(of: "rate_response.rates[i].delivery_days").intValue
guaranteed_service = jResp.bool(of: "rate_response.rates[i].guaranteed_service")
estimated_delivery_date = jResp.string(of: "rate_response.rates[i].estimated_delivery_date")
carrier_delivery_days = jResp.string(of: "rate_response.rates[i].carrier_delivery_days")
ship_date = jResp.string(of: "rate_response.rates[i].ship_date")
negotiated_rate = jResp.bool(of: "rate_response.rates[i].negotiated_rate")
service_type = jResp.string(of: "rate_response.rates[i].service_type")
service_code = jResp.string(of: "rate_response.rates[i].service_code")
trackable = jResp.bool(of: "rate_response.rates[i].trackable")
carrier_code = jResp.string(of: "rate_response.rates[i].carrier_code")
carrier_nickname = jResp.string(of: "rate_response.rates[i].carrier_nickname")
carrier_friendly_name = jResp.string(of: "rate_response.rates[i].carrier_friendly_name")
validation_status = jResp.string(of: "rate_response.rates[i].validation_status")
j = 0
count_j = jResp.size(ofArray: "rate_response.rates[i].warning_messages").intValue
while j < count_j {
jResp.j = j
strVal = jResp.string(of: "rate_response.rates[i].warning_messages[j]")
j = j + 1
}
j = 0
count_j = jResp.size(ofArray: "rate_response.rates[i].error_messages").intValue
while j < count_j {
jResp.j = j
j = j + 1
}
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "rate_response.invalid_rates").intValue
while i < count_i {
jResp.i = i
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "rate_response.errors").intValue
while i < count_i {
jResp.i = i
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "tags").intValue
while i < count_i {
jResp.i = i
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "packages").intValue
while i < count_i {
jResp.i = i
package_code = jResp.string(of: "packages[i].package_code")
weightValue = jResp.int(of: "packages[i].weight.value").intValue
weightUnit = jResp.string(of: "packages[i].weight.unit")
dimensionsUnit = jResp.string(of: "packages[i].dimensions.unit")
Length = jResp.int(of: "packages[i].dimensions.length").intValue
Width = jResp.int(of: "packages[i].dimensions.width").intValue
Height = jResp.int(of: "packages[i].dimensions.height").intValue
insured_valueCurrency = jResp.string(of: "packages[i].insured_value.currency")
insured_valueAmount = jResp.int(of: "packages[i].insured_value.amount").intValue
Reference1 = jResp.string(of: "packages[i].label_messages.reference1")
Reference2 = jResp.string(of: "packages[i].label_messages.reference2")
Reference3 = jResp.string(of: "packages[i].label_messages.reference3")
external_package_id = jResp.string(of: "packages[i].external_package_id")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "items").intValue
while i < count_i {
jResp.i = i
i = i + 1
}
}
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": {
"validate_address": "validate_and_clean",
"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 Winchester",
"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": "Validate when getting 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\"validate_address\": \"validate_and_clean\",\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 Winchester\",\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": "You can choose to validate the address as part of the rate request, which will help ensure that you get back the most accurate rates possible. Just set the `validate_address` field to either `validate_only` or `validate_and_clean`."
},
"response": [
{
"name": "Validate when getting 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\"validate_address\": \"validate_and_clean\",\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 Winchester\",\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": "Wed, 18 Sep 2019 16:07:21 GMT"
},
{
"key": "Content-Type",
"value": "application/json; charset=utf-8"
},
{
"key": "Content-Length",
"value": "13927"
},
{
"key": "Connection",
"value": "keep-alive"
},
{
"key": "Access-Control-Allow-Origin",
"value": "https://www.shipengine.com"
},
{
"key": "Vary",
"value": "Origin"
},
{
"key": "x-shipengine-requestid",
"value": "866b2c8a-744b-425a-8bb8-92c1eb15e01b"
}
],
"cookie": [
],
"body": "{\n \"rate_response\": {\n \"rates\": [\n {\n \"rate_id\": \"se-12502689\",\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-24T23:00:00Z\",\n \"carrier_delivery_days\": \"Tuesday 9/24 by 11:00 PM\",\n \"ship_date\": \"2019-09-18T00: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-12502690\",\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-20T00:00:00Z\",\n \"carrier_delivery_days\": \"2\",\n \"ship_date\": \"2019-09-18T00: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-12502691\",\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-20T00:00:00Z\",\n \"carrier_delivery_days\": \"2\",\n \"ship_date\": \"2019-09-18T00: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-12502692\",\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-20T00:00:00Z\",\n \"carrier_delivery_days\": \"2\",\n \"ship_date\": \"2019-09-18T00: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-12502693\",\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-20T00:00:00Z\",\n \"carrier_delivery_days\": \"2\",\n \"ship_date\": \"2019-09-18T00: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-12502694\",\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-20T00:00:00Z\",\n \"carrier_delivery_days\": \"2\",\n \"ship_date\": \"2019-09-18T00: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-12502695\",\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-20T00:00:00Z\",\n \"carrier_delivery_days\": \"2\",\n \"ship_date\": \"2019-09-18T00: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-12502696\",\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-20T00:00:00Z\",\n \"carrier_delivery_days\": \"2\",\n \"ship_date\": \"2019-09-18T00: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-12502697\",\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-21T00:00:00Z\",\n \"carrier_delivery_days\": \"3\",\n \"ship_date\": \"2019-09-18T00: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-1437547\",\n \"shipment_id\": \"se-4160010\",\n \"created_at\": \"2019-09-18T16:07:21.3769021Z\",\n \"status\": \"completed\",\n \"errors\": []\n },\n \"shipment_id\": \"se-4160010\",\n \"carrier_id\": null,\n \"service_code\": null,\n \"external_shipment_id\": null,\n \"ship_date\": \"2019-09-18T00:00:00Z\",\n \"created_at\": \"2019-09-18T16:07:20.62Z\",\n \"modified_at\": \"2019-09-18T16:07:20.62Z\",\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\": \"Example Corp.\",\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\": \"Example Corp.\",\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}"
}
]
}