DOCS

反向包含定价

通过 API 从您的全包价格中反向提取关税、税款和费用。

BETA

Zonos 的反向包含定价功能让您可以发送一个全包价格(已包含关税、税款和/或费用),并获得基础价格用于海关文件。这使您能够向购物者显示全价定价,同时仍为商业发票声明干净的非全包基础价格。此解决方案适用于需要全包定价或强制要求全包定价的市场,帮助您支持全球定价战略并保持海关准确性和合规性。

它如何工作? 

要从全包价格中反向提取关税、税款或费用,您需要在 API 请求中使用 reverseAmountDetails 配置。此对象告诉 Zonos 您的输入价格中包含哪些组成部分,应将其删除以计算真实的基础价格用于海关。

当您发送包含各自 reverseAmountDetails 配置的全包价格时,Zonos 将:

  1. 分析全包价格和指定的参数。
  2. 确定要反向提取的组成部分(关税、税款、费用)。
  3. 通过移除这些组成部分来计算基础价格。
  4. 返回调整后的基础价格和反向提取金额的明细。

API 指南 

要将反向包含定价集成到您的工作流程中,请在 itemCreateWorkflow 请求中包含 reverseAmountDetail 对象。

配置请求

传递 reverseAmountDetail 告诉 Zonos 反向提取关税、税款和/或费用。如果未传递此配置,将执行标准着陆成本计算。

itemReverseAmountType
taxRateCountry
dutyRateCountry
serviceLevelCodes
status (仅响应)

API 示例

准备好所需的输入后,使用您首选的客户端或工具向 API 发送 GraphQL 变更。

1mutation {
2 partyCreateWorkflow(
3 input: [
4 { type: ORIGIN, location: { countryCode: US } }
5 {
6 type: DESTINATION
7 location: { countryCode: CA, administrativeAreaCode: "AB" }
8 }
9 ]
10 ) {
11 id
12 }
13 itemCreateWorkflow(
14 input: [
15 {
16 productId: "product-1"
17 hsCode: "9503.00.9079"
18 countryOfOrigin: US
19 amount: 100
20 quantity: 1
21 currencyCode: USD
22 reverseAmountDetail: { type: DUTY_TAX, taxRateCountry: CA }
23 }
24 ]
25 ) {
26 id
27 amount
28 currencyCode
29 quantity
30 hsCode
31 countryOfOrigin
32 reverseAmountDetail {
33 originalAmount
34 amount
35 status
36 type
37 dutyRateCountry
38 taxRateCountry
39 taxRate
40 dutyRate
41 feeAmount
42 }
43 }
44 cartonsCreateWorkflow(
45 input: {
46 length: 8
47 width: 4
48 height: 2
49 dimensionalUnit: INCH
50 weight: 1
51 weightUnit: POUND
52 }
53 ) {
54 id
55 }
56 shipmentRatingCreateWorkflow(
57 input: {
58 amount: "30.00"
59 currencyCode: USD
60 serviceLevelCode: "ups.worldwide_expedited"
61 }
62 ) {
63 id
64 }
65 landedCostCalculateWorkflow(input: { calculationMethod: DDP_PREFERRED }) {
66 id
67 amountSubtotals {
68 items
69 shipping
70 duties
71 taxes
72 fees
73 }
74 duties {
75 amount
76 currency
77 note
78 }
79 fees {
80 amount
81 currency
82 type
83 note
84 }
85 taxes {
86 amount
87 currency
88 }
89 method
90 }
91}
预约演示

这个页面有帮助吗?


获取支持·法律文件·© 2026 Zonos
在此页面: