For the complete documentation index, see llms.txt. This page is also available as Markdown.

Customs Fees Settings Response Update

The response structure of the method that returns recipient country settings used to determine whether customs duties can be paid by the sender has been updated.

Before

{
  "customFeeActive": true,
  "declaredCost": 100
}

After

{
  "customsFeesActive": true,
  "maxDeclaredCost": 500,
  "minDeclaredCost": 10
}

What has changed

Previously, the method returned only a single declared parcel value threshold.

The method now returns separately:

  • the minimum declared value threshold (minDeclaredCost);

  • the maximum declared value threshold (maxDeclaredCost).

This allows a more precise determination of the declared parcel value range within which the option for customs-duty payment by the sender is available. If the declared parcel value is lower than minDeclaredCost, customs duties are not applied to the parcel.

Last updated