Hi @Liam-Shopify .
Here is an example carrier callback for when we are seeing this issue.
The interesting thing about this is if I remove these 2 lines the description line will show:
“min_delivery_date”: “2025-06-18T20:43:47.972Z”,
“max_delivery_date”: “2025-06-24T20:43:47.972Z”,
This call took place on the store derpyherps.myshopify.com as a test. I ran a separate test with a new app on that same store and found the same results so it is happening across all apps on this store(and many others).
{
“rate”: {
“origin”: {
“country”: “US”,
“postal_code”: “94107”,
“province”: “CA”,
“city”: “San Francisco”,
“name”: null,
“address1”: “200 Townsend Street”,
“address2”: “”,
“address3”: null,
“latitude”: 41,
“longitude”: -87,
“phone”: “”,
“fax”: null,
“email”: null,
“address_type”: null,
“company_name”: “The Derpside”
},
“destination”: {
“country”: “CA”,
“postal_code”: “V3J 0K7”,
“province”: “BC”,
“city”: “Coquitlam”,
“name”: “Bart Simpson”,
“address1”: “567 Clarke Road”,
“address2”: null,
“address3”: null,
“latitude”: 49.2625639,
“longitude”: -122.8898651,
“phone”: null,
“fax”: null,
“email”: null,
“address_type”: null,
“company_name”: null
},
“items”: [
{
“name”: “New Art”,
“sku”: “12345”,
“quantity”: 1,
“grams”: 100,
“price”: 6797,
“vendor”: “test_test”,
“requires_shipping”: true,
“taxable”: true,
“fulfillment_service”: “manual”,
“properties”: {},
“product_id”: 7222979690539,
“variant_id”: 41063031177259
}
],
“currency”: “CAD”,
“locale”: “en-CA”
}
}
This is our response to the webhook:
{
“rates”: [
{
“currency”: “CAD”,
“phone_required”: false,
“min_delivery_date”: “2025-06-17T20:43:47.974Z”,
“max_delivery_date”: “2025-06-20T20:43:47.974Z”,
“days”: “2-5 business days”,
“description”: “Shipping: 32.82 CAD Duties, taxes and fees: 0.00 CAD”,
“total_price”: “3282”,
“total_price_usd”: “2407”,
“shipping_cost”: “32.82”,
“service_code”: “REDACTED-4829-42f9-9104-1e08290ada38”,
“service_name”: “International Express: Duties and Taxes Prepaid”,
“carrier”: “REDACTED”,
“carrierServiceCode”: “INTERNATIONAL_ECONOMY”,
“service_code_flcl”: “express”,
“provider”: “REDACTED”,
“shipping_cost_original”: 32.82,
“termsOfTrade”: “ddp”
},
{
“currency”: “CAD”,
“phone_required”: false,
“min_delivery_date”: “2025-06-18T20:43:47.972Z”,
“max_delivery_date”: “2025-06-24T20:43:47.972Z”,
“days”: “3-7 business days”,
“description”: “Shipping: 47.72 CAD Duties, taxes and fees: 0.00 CAD”,
“total_price”: “4772”,
“total_price_usd”: “3500”,
“shipping_cost”: “47.72”,
“service_code”: “REDACTED-55b8-4bc2-bbe5-e17f4da37c23”,
“service_name”: “International Standard: Duties and Taxes Prepaid”,
“carrier”: “REDACTED”,
“carrierServiceCode”: “APC.PRIPDC”,
“service_code_flcl”: “standard”,
“provider”: “REDACTED”,
“shipping_cost_original”: 17.78,
“termsOfTrade”: “ddp”
}
]
}