From 8b8d9ec61c55847fbf44745246d411241c5a3db8 Mon Sep 17 00:00:00 2001 From: Nick de Vries Date: Mon, 17 Nov 2025 09:13:43 +0100 Subject: [PATCH 1/2] :sparkles: Add meta property to landed cost request --- specification/paths/CalculateLandedCosts.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/specification/paths/CalculateLandedCosts.json b/specification/paths/CalculateLandedCosts.json index f90253fe..43878fea 100644 --- a/specification/paths/CalculateLandedCosts.json +++ b/specification/paths/CalculateLandedCosts.json @@ -114,6 +114,16 @@ "description": "Shipment items containing `description`, `item_value` and `hs_code`. If the `hs_code` is not supplied, the `sku` is required and an HS code suggestion request will be triggered on your behalf, to determine the best matching HS code." } } + }, + "meta": { + "type": "object", + "properties": { + "convert_to_destination_currency": { + "type": "boolean", + "default": false, + "description": "If `false` the values are returned in the currency of the sender country. If `true` the values are returned in the currency of the recipient country." + } + } } } } From 8100ff2627b7c92c3227a83211f43585df2e8031 Mon Sep 17 00:00:00 2001 From: Nick de Vries Date: Tue, 18 Nov 2025 14:54:13 +0100 Subject: [PATCH 2/2] :recycle: Change default of meta.convert_to_destination_currency to true on landed cost endpoint. --- specification/paths/CalculateLandedCosts.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/paths/CalculateLandedCosts.json b/specification/paths/CalculateLandedCosts.json index 43878fea..17490f10 100644 --- a/specification/paths/CalculateLandedCosts.json +++ b/specification/paths/CalculateLandedCosts.json @@ -120,7 +120,7 @@ "properties": { "convert_to_destination_currency": { "type": "boolean", - "default": false, + "default": true, "description": "If `false` the values are returned in the currency of the sender country. If `true` the values are returned in the currency of the recipient country." } }