Customs
Information required for international shipments to pass customs.
Attributes
Attribute |
Type |
Required |
Description |
---|---|---|---|
content_type |
string enum: |
✓ |
The type of items contained in the shipment. |
non_delivery |
string enum: |
✓ |
What should be done with the shipment when delivery is not possible. |
incoterm |
string enum: |
✓ |
Specify if the sender or receiver is responsible for import charges and risks. DDP (Delivered Duty Paid, sender) or DAP (Delivered At Place, receiver). |
shipping_value |
The shipping cost paid by the customer, for tax and duty purposes. |
||
invoice_number |
string |
Required for: |
The number of the invoice attached to the package. |
license_number |
string |
A license number related to shipment items if available. |
|
certificate_number |
string |
A certificate number related to shipment items if available. |
Example
Gift
{
"content_type": "gifts",
"non_delivery": "abandon",
"shipping_value": {
"amount": 995,
"currency": "EUR"
},
"incoterm": "DDP"
}
Merchandise
{
"content_type": "merchandise",
"non_delivery": "return",
"incoterm": "DAP",
"shipping_value": {
"amount": 995,
"currency": "EUR"
},
"invoice_number": "2018-1302",
"license_number": "NH132-1324",
"certificate_number": "KC2-5SH-4113"
}