API経由でInclusive priceから関税、税金、手数料を逆算します。
BETA
Zonosのreverse inclusive pricingでは、関税、税金、および/または手数料をすでに含むInclusive priceを送信し、税関書類用のベース価格を返却できます。買い物客にはall-in価格を表示しながら、商業インボイス用にクリーンな非Inclusiveベース価格を申告できます。このソリューションは、Inclusive pricingが期待または要求される市場に最適で、グローバル価格戦略をサポートし、税関の正確性とコンプライアンスの維持に役立ちます。
Inclusive priceから関税、税金、または手数料を逆算するには、APIリクエストで reverseAmountDetails 設定を使用します。このオブジェクトは、入力価格に含まれるコンポーネントと、税関用の真のベース価格を計算するために削除すべきコンポーネントをZonosに伝えます。
reverseAmountDetails
それぞれの reverseAmountDetails 設定を含むInclusive priceを送信すると、Zonosは以下を実行します:
reverse inclusive pricingをワークフローに統合するには、itemCreateWorkflow リクエストに reverseAmountDetail オブジェクトを含めます。
itemCreateWorkflow
reverseAmountDetail
reverseAmountDetail を渡すと、Zonosは関税、税金、および/または手数料を逆算します。この設定が渡されない場合、標準のLanded Cost計算が実行されます。
itemReverseAmountType
価格に含まれるコンポーネントを定義します。以下から選択できます:
TAX
DUTY
DUTY_TAX
TAX_FEE
DUTY_FEE
DUTY_TAX_FEE
taxRateCountry
価格に含まれる税率の国を示します。これはオプションです。
dutyRateCountry
価格に含まれる関税率の国を示します。これはオプションです。
serviceLevelCodes
itemReverseAmountType に FEE が含まれる場合のみ必要です。
FEE
status
逆算結果を示します。このフィールドはレスポンスで返されます:
APPLIED
NOT_APPLIED_UNDER_DE_MINIMIS
NOT_APPLIED_NEGATIVE_VALUE
必要な入力を準備したら、お好みのクライアントまたはツールを使用してGraphQL mutationをAPIに送信します。
mutation {
partyCreateWorkflow(
input: [
{ type: ORIGIN, location: { countryCode: US } }
{
type: DESTINATION
location: { countryCode: CA, administrativeAreaCode: "AB" }
}
]
) {
id
itemCreateWorkflow(
productId: "product-1"
hsCode: "9503.00.9079"
countryOfOrigin: US
amount: 100
quantity: 1
currencyCode: USD
reverseAmountDetail: { type: DUTY_TAX, taxRateCountry: CA }
amount
currencyCode
quantity
hsCode
countryOfOrigin
reverseAmountDetail {
originalAmount
type
taxRate
dutyRate
feeAmount
cartonsCreateWorkflow(
input: {
length: 8
width: 4
height: 2
dimensionalUnit: INCH
weight: 1
weightUnit: POUND
shipmentRatingCreateWorkflow(
amount: "30.00"
serviceLevelCode: "ups.worldwide_expedited"
landedCostCalculateWorkflow(input: { calculationMethod: DDP_PREFERRED }) {
amountSubtotals {
items
shipping
duties
taxes
fees
duties {
currency
note
fees {
taxes {
method
Reverse inclusive pricing
Reverse inclusive pricing
API経由でInclusive priceから関税、税金、手数料を逆算します。
BETA
Zonosのreverse inclusive pricingでは、関税、税金、および/または手数料をすでに含むInclusive priceを送信し、税関書類用のベース価格を返却できます。買い物客にはall-in価格を表示しながら、商業インボイス用にクリーンな非Inclusiveベース価格を申告できます。このソリューションは、Inclusive pricingが期待または要求される市場に最適で、グローバル価格戦略をサポートし、税関の正確性とコンプライアンスの維持に役立ちます。
仕組み
Inclusive priceから関税、税金、または手数料を逆算するには、APIリクエストで
reverseAmountDetails設定を使用します。このオブジェクトは、入力価格に含まれるコンポーネントと、税関用の真のベース価格を計算するために削除すべきコンポーネントをZonosに伝えます。それぞれの
reverseAmountDetails設定を含むInclusive priceを送信すると、Zonosは以下を実行します:APIガイド
reverse inclusive pricingをワークフローに統合するには、
itemCreateWorkflowリクエストにreverseAmountDetailオブジェクトを含めます。リクエストの設定
reverseAmountDetailを渡すと、Zonosは関税、税金、および/または手数料を逆算します。この設定が渡されない場合、標準のLanded Cost計算が実行されます。itemReverseAmountType価格に含まれるコンポーネントを定義します。以下から選択できます:
TAX: 税金のみが含まれます。DUTY: 関税のみが含まれます。DUTY_TAX: 関税と税金が含まれます。TAX_FEE: 税金と手数料が含まれます。DUTY_FEE: 関税と手数料が含まれます。DUTY_TAX_FEE: 関税、税金、手数料がすべて含まれます。taxRateCountry価格に含まれる税率の国を示します。これはオプションです。
dutyRateCountry価格に含まれる関税率の国を示します。これはオプションです。
serviceLevelCodesitemReverseAmountTypeにFEEが含まれる場合のみ必要です。status(response only)逆算結果を示します。このフィールドはレスポンスで返されます:
APPLIED: 逆算が正常に適用されました。NOT_APPLIED_UNDER_DE_MINIMIS: 値がde minimis閾値を下回るため、計算は適用されませんでした。NOT_APPLIED_NEGATIVE_VALUE: 負の値を回避するため、計算はスキップされました。APIの例
必要な入力を準備したら、お好みのクライアントまたはツールを使用してGraphQL mutationをAPIに送信します。
mutation {partyCreateWorkflow(input: [{ type: ORIGIN, location: { countryCode: US } }{type: DESTINATIONlocation: { countryCode: CA, administrativeAreaCode: "AB" }}]) {id}itemCreateWorkflow(input: [{productId: "product-1"hsCode: "9503.00.9079"countryOfOrigin: USamount: 100quantity: 1currencyCode: USDreverseAmountDetail: { type: DUTY_TAX, taxRateCountry: CA }}]) {idamountcurrencyCodequantityhsCodecountryOfOriginreverseAmountDetail {originalAmountamountstatustypedutyRateCountrytaxRateCountrytaxRatedutyRatefeeAmount}}cartonsCreateWorkflow(input: {length: 8width: 4height: 2dimensionalUnit: INCHweight: 1weightUnit: POUND}) {id}shipmentRatingCreateWorkflow(input: {amount: "30.00"currencyCode: USDserviceLevelCode: "ups.worldwide_expedited"}) {id}landedCostCalculateWorkflow(input: { calculationMethod: DDP_PREFERRED }) {idamountSubtotals {itemsshippingdutiestaxesfees}duties {amountcurrencynote}fees {amountcurrencytypenote}taxes {amountcurrency}method}}このページは役に立ちましたか?