v1
latestOpenAPI 3.0.12026-07-242073551.1 MBHurricane Services
Prohibited Items
Check whether specific items in a shipment are prohibited for import, export, or transport based on the regulations related to the shipper's and destination countries. <br /> This API helps ensure compliance with international trade laws by identifying items that cannot legally cross borders, thereby preventing legal issues and shipment delays.
post/v4/ProhibitedItems
Request body
Example request
{
"ShippingAccountId": "453",
"Shipment": {
"Reference": "ABC1234",
"ShipperCountryCode": "GB",
"DestinationCountryCode": "US"
},
"Items": [
{
"SkuCode": "BWPC123",
"HSCode": "340120",
"Description": "BABY WIPES"
}
]
}Response
Returns prohibited items response.
Example response
{
"ShippingAccountId": "453",
"Shipment": {
"Reference": "ABC1234"
},
"Items": [
{
"HS6Code": "340120",
"Description": "BABY WIPES",
"10DigitExportHSCode": "8525500000",
"10DigitImportHSCode": "8525500000"
}
],
"IsError": true,
"ErrorDescription": "The Destination Country doesn't exist",
"GeneratedDate": "2019-02-12T15:27:01Z"
}