割引付きのLanded cost
注意: 現在、この機能は Landed Cost API を使用している顧客のみが利用可能です。
以下は、checkout で割引を処理するいくつかの方法です:
- Zonos のアルゴリズムに landed cost の割引を計算させる。
- 自分のアルゴリズムを使用して割引を計算し、その後 landed cost をリクエストする。
- 割引が適用されていない landed cost リクエストを取得する。
landed cost 計算における割引の管理方法は、商業インボイスを修正する能力に基づいて決定されます。商業インボイスに割引や無料配送適用する方法についてのドキュメントをご覧ください。
Zonos Landed Cost は、あなたの代わりに自動的に割引を配分できます。これにより、関税や税金を過剰または不足して請求することなく、越境ショッピングを行う顧客に割引を提供できます。
割引の種類
プロモーションコードなどの注文レベルの割引を、discounts
配列内の landed cost リクエストで送信できます。
リクエスト
{
"discounts": [
{
"id": "SURRENDER",
"amount": 10.0,
"detail": null
}
]
}
ディスカウント額は、landed cost リクエスト内のアイテムに対して、注文の総ディスカウント値まで比例配分されます。アイテムの価値の変化は、各アイテムのレスポンス内の note
フィールドに反映されます。商業インボイスのディスカウントに関する文書の プロモコード セクションの例を参照してください。
注意: ディスカウントの値によってアイテムの価値がほぼゼロまたは負の額になる場合、ディスカウントは送料にも適用されます。
レスポンス
{
"customs": {
"amount_shipping": 20.0,
"delivery_duty_paid": "unavailable",
"items": [
{
"id": "294395",
"amount": 15.0,
"country_of_origin": "CN",
"country_of_origin_source": "platform",
"description_customs": "Men's t-shirt 100% cotton",
"description_retail": "Mars Attacks Men's Tee Black",
"detail": null,
"dimensions": {
"height": 1.0,
"length": 1.0,
"unit": "inches",
"width": 1.0
},
"hs_code": "6217.10",
"hs_code_source": "Account default HS code",
"image_url": "https://zonos.com/images/handbag.png",
"note": "Item was discounted by 25% from 20.00 USD to 15.00 USD",
"quantity": 1,
"upc_code": null,
"weight": 1,
"weight_unit": "pound"
},
{
"id": "294396",
"amount": 11.25,
"country_of_origin": "CN",
"country_of_origin_source": "platform",
"description_customs": "Men’s 100% cotton costume for dress up",
"description_retail": "Mars Attacks Martian Soldier Costume",
"detail": null,
"dimensions": {
"height": 1.0,
"length": 1.0,
"unit": "inches",
"width": 1.0
},
"hs_code": null,
"hs_code_source": "Account default HS code",
"image_url": "https://zonos.com/images/handbag.png",
"note": "Item was discounted by 25% from 15.00 USD to 11.25 USD",
"quantity": 1,
"upc_code": null,
"weight": 1,
"weight_unit": "pound"
},
{
"id": "294397",
"amount": 3.75,
"country_of_origin": "CN",
"country_of_origin_source": "platform",
"description_customs": "100% cotton headband",
"description_retail": "Mars Attacks Headband",
"detail": null,
"dimensions": {
"height": 1.0,
"length": 1.0,
"unit": "inches",
"width": 1.0
},
"hs_code": "6505.00.10",
"hs_code_source": "Account default HS code",
"image_url": "https://zonos.com/images/handbag.png",
"note": "Item was discounted by 25% from 5.00 USD to 3.75 USD",
"quantity": 1,
"upc_code": null,
"weight": 1,
"weight_unit": "pound"
}
],
"ship_to_country": "FR"
}
}
無料アイテムを送信するには、アイテムの amount
と等しい amount_discount
を送信することをお勧めします。これにより、合計金額は 0 USD になります。
items.amount
が 0
で amount_discount
が使用されていない場合、無料アイテムの推定値として 5.00 USD のアカウントデフォルトが使用されます。残りの 5.00 USD は、残りのアイテムに分配されます。このデフォルト値は Dashboard 内で変更できます。
注文内の唯一のアイテムに対して 100% の割引をサポートしていないことに注意してください。価格がゼロより大きい他のアイテムが注文にある場合にのみ、アイテムを 100% 割引することを許可します。
リクエスト
{
"items": [
{
"id": "294395",
"amount": 20.0,
"amount_discount": null,
"country_of_origin": "FR",
"description_retail": "Mars Attacks Men's Tee Black",
"hs_code": "6217.10",
"quantity": 1,
"weight": 1.0,
"weight_unit": "pound"
},
{
"id": "294395",
"amount": 4.5,
"amount_discount": 4.5,
"country_of_origin": "FR",
"description_retail": "Mars Attacks Men's Tee Black",
"hs_code": "6217.10",
"quantity": 1,
"weight": 1.0,
"weight_unit": "pound"
}
]
}
landed costリクエストに無料アイテムが含まれている場合(アイテムの割引がアイテムの総コストに等しい)、割引は注文レベルの割引と同様に適用されます—注文内の各アイテムは、その単一アイテムの金額まで比例的に割引されて表示され、特定のアイテムが100%の割引を示すことはありません。
以下は、上記のリクエストに対する応答の例です。
応答
{
"customs": {
"amount_shipping": 12.5,
"delivery_duty_paid": "unknown",
"items": [
{
"id": "294395",
"amount": 16.33,
"country_of_origin": "CN",
"country_of_origin_source": "platform",
"description_customs": "Men's t-shirt 100% cotton",
"description_retail": "Mars Attacks Men's Tee Black",
"detail": null,
"dimensions": {
"height": 4.0,
"length": 6.0,
"unit": "inches",
"width": 11.0
},
"hs_code": "6217.10",
"hs_code_source": "Account default HS code",
"image_url": "https://zonos.com/images/handbag.png",
"note": "Item was discounted by 18.37% from 20.00 USD to 16.33 USD",
"quantity": 1,
"upc_code": null,
"weight": 1.0,
"weight_unit": "pound"
},
{
"id": "294396",
"amount": 3.67,
"country_of_origin": "CN",
"country_of_origin_source": "platform",
"description_customs": "Men’s 100% cotton costume for dress up",
"description_retail": "Mars Attacks Martian Soldier Costume",
"detail": null,
"dimensions": {
"height": 4.0,
"length": 6.0,
"unit": "inches",
"width": 11.0
},
"hs_code": null,
"hs_code_source": "Account default HS code",
"image_url": "https://zonos.com/images/handbag.png",
"note": "Item was discounted by 18.37% from 4.50 USD to 3.67 USD",
"quantity": 1,
"upc_code": null,
"weight": 1.0,
"weight_unit": "pound"
}
],
"import_country": "FR"
}
}
無料配送のlanded costをリクエストするには、割引と同様に配送を追加することをお勧めします。通常の配送amount
を入力し、その後amount_discount
に配送と同じ値を入力します。
リクエスト
{
"shipping": {
"amount": 7.0,
"amount_discount": 7.0,
"service_level": "ups_express_saver"
}
}
customs
配列には、注文レベルの割引が適用されるのと同様に、アイテムの調整された金額が含まれます。note
フィールドは、何が変更されたかを示します。
応答
{
"customs": {
"amount_shipping": 7.0,
"delivery_duty_paid": "unknown",
"items": [
{
"id": "294395",
"amount": 16.0,
"country_of_origin": "CN",
"country_of_origin_source": "platform",
"description_customs": "Men's t-shirt 100% cotton",
"description_retail": "Mars Attacks Men's Tee Black",
"detail": null,
"dimensions": {
"height": 4.0,
"length": 6.0,
"unit": "inches",
"width": 11.0
},
"hs_code": "6217.10",
"hs_code_source": "Account default HS code",
"image_url": "https://zonos.com/images/handbag.png",
"note": "Item was discounted by 20.00% from 20.00 USD to 16.00 USD",
"quantity": 1,
"upc_code": null,
"weight": 1.0,
"weight_unit": "pound"
},
{
"id": "294396",
"amount": 12.0,
"country_of_origin": "CN",
"country_of_origin_source": "platform",
"description_customs": "Men’s 100% cotton costume for dress up",
"description_retail": "Mars Attacks Martian Soldier Costume",
"detail": null,
"dimensions": {
"height": 4.0,
"length": 6.0,
"unit": "inches",
"width": 11.0
},
"hs_code": null,
"hs_code_source": "Account default HS code",
"image_url": "https://zonos.com/images/handbag.png",
"note": "Item was discounted by 20.00% from 15.00 USD to 12.00 USD",
"quantity": 1,
"upc_code": null,
"weight": 1.0,
"weight_unit": "pound"
}
],
"import_country": "FR"
}
}
すべての金額は、Landed Cost リクエスト内の (amount
, amount_discount
, amount_shipping
) で 0 より大きくなければなりません。リクエストに負の数が送信された場合、リクエストはエラーを返します。
自分で割引を適用する
独自の数式やルールを使用して、landed cost リクエスト内のアイテムに割引を適用できます。これにより、landed cost の計算方法を完全にコントロールできます。
正当なビジネス上の理由から、小売業者は landed cost の計算に割引を除外することを決定する場合があります。たとえば、商業請求書の金額がカートの金額や適用された割引と一致しない場合、landed cost の計算で割引を除外する方が実用的かもしれません。割引を除外することを選択した場合、landed cost の金額は高くなりますが、商業請求書に表示される金額と一致します。
よくある質問
Shopify 用の Duty and Tax アプリを使用しています。プロモコードや割引は Zonos で機能しますか?
プロモコードは通常通り機能しますが、送料を減少させる割引やプロモコードは、送料に含まれる関税や税金も減少させる可能性があります。詳細については、Zonos サポート担当者にお問い合わせください。
割引を管理する
割引が landed cost 計算に与える影響。割引を考慮した landed cost の計算には、さまざまなオプションがあります。Landed Cost API を使用している顧客は、Zonos のアルゴリズムを使用して割引を比例配分するか、自分で割引を適用することができます。すべての金額が正であれば、無料アイテムや無料配送も計算に含めることができます。