配置產品規格以準確計算消費稅。
BETA
運送含酒精的產品至國際時,您需要計算消費稅,這是對酒精飲品及其他受管制商品的特殊稅款。當您透過我們的 API 提供所需的產品規格或將其新增至您的 Zonos Catalog 時,Zonos 會自動計算運往加拿大及大多數歐盟國家的消費稅。
消費稅適用於根據協調稅則第 22 章分類的產品,涵蓋非酒精飲品的稅則號列 2201–2202、酒精飲品、烈酒及發酵產品的稅則號列 2203–2208,以及醋的稅則號列 2209。
重要提示:如果您使用 Zonos Landed Cost 保證並要求第 22 章產品的報價但未提供所需的測量值,則不會提供報價。您必須透過 API 或上傳至 Zonos Catalog 提供必要的測量資料。
不同國家對計算消費稅的測量要求不同,具體取決於產品類型。下表顯示了每個國家和稅則號列類別所需的測量資料。體積是指產品的液體體積,而酒精度 (ABV) 代表酒精含量的百分比。
運送受消費稅約束的酒精或其他第 22 章產品時,您必須包含特定的測量輸入以確保準確的計算。所需的測量資料因目的地國家而異—例如,運送葡萄酒至波蘭時,您需要同時提供 VOLUME 和 ALCOHOL_BY_VOLUME。
VOLUME
ALCOHOL_BY_VOLUME
此表顯示了測量欄位在 API 請求和 CSV 上傳之間的對應關係:
unitOfMeasure
itemUnitOfMeasure!
volume
value
alcohol_by_volume
PERCENTAGE
在 API 參考這裡 查看完整的 API 測量值清單。
您可以在著陸成本請求時新增產品測量資料,或將測量資料新增至您的 Zonos Catalog 項目,以便根據 產品 ID 或 SKU 自動應用。請按照以下的 mutation 和步驟操作:
使用 itemCreateWorkflow 中的 measurements 陣列透過 API 直接包含測量資料。
itemCreateWorkflow
measurements
mutation {
partyCreateWorkflow(
input: [
{ location: { countryCode: US }, type: ORIGIN }
{
location: {
countryCode: PL
line1: "ul. Leonarda 87"
locality: "Lublin"
postalCode: "20-625"
}
person: {
email: "test@gmail.com"
firstName: "firstName"
lastName: "lastName"
phone: "5022303021"
companyName: "goProTest"
metadata: { key: "key", value: "value" }
type: DESTINATION
]
) {
type
id
organization
itemCreateWorkflow(
amount: 500
currencyCode: USD
countryOfOrigin: US
quantity: 1
description: "Red Wine Sparkling"
sku: "15120"
measurements: [
{ type: ALCOHOL_BY_VOLUME, value: 12, unitOfMeasure: PERCENTAGE }
{ type: VOLUME, value: 750, unitOfMeasure: MILLILITER }
name
productId
sku
amount
hsCode
description
cartonizeWorkflow {
items {
item {
shipmentRatingCreateWorkflow(
input: {
amount: 15
currencyCode: EUR
serviceLevelCode: "ups.worldwide_expedited"
serviceLevelCode
landedCostCalculateWorkflow(
endUse: NOT_FOR_RESALE
tariffRate: ZONOS_PREFERRED
calculationMethod: DDP_PREFERRED
landedCostGuaranteeCode
amountSubtotals {
taxes
items
shipping
fees
duties
landedCostTotal
shipmentRating {
displayName
method
duties {
currency
note
formula
taxes {
fees {
消費稅
計算消費稅
配置產品規格以準確計算消費稅。
BETA
運送含酒精的產品至國際時,您需要計算消費稅,這是對酒精飲品及其他受管制商品的特殊稅款。當您透過我們的 API 提供所需的產品規格或將其新增至您的 Zonos Catalog 時,Zonos 會自動計算運往加拿大及大多數歐盟國家的消費稅。
概覽
消費稅適用於根據協調稅則第 22 章分類的產品,涵蓋非酒精飲品的稅則號列 2201–2202、酒精飲品、烈酒及發酵產品的稅則號列 2203–2208,以及醋的稅則號列 2209。
重要提示:如果您使用 Zonos Landed Cost 保證並要求第 22 章產品的報價但未提供所需的測量值,則不會提供報價。您必須透過 API 或上傳至 Zonos Catalog 提供必要的測量資料。
按支持國家的測量要求
不同國家對計算消費稅的測量要求不同,具體取決於產品類型。下表顯示了每個國家和稅則號列類別所需的測量資料。體積是指產品的液體體積,而酒精度 (ABV) 代表酒精含量的百分比。
提供所需的測量資料
運送受消費稅約束的酒精或其他第 22 章產品時,您必須包含特定的測量輸入以確保準確的計算。所需的測量資料因目的地國家而異—例如,運送葡萄酒至波蘭時,您需要同時提供
VOLUME和ALCOHOL_BY_VOLUME。此表顯示了測量欄位在 API 請求和 CSV 上傳之間的對應關係:
unitOfMeasureitemUnitOfMeasure!volumevaluealcohol_by_volumePERCENTAGE在 API 參考這裡 查看完整的 API 測量值清單。
透過 API 或 Catalog 新增測量資料
您可以在著陸成本請求時新增產品測量資料,或將測量資料新增至您的 Zonos Catalog 項目,以便根據 產品 ID 或 SKU 自動應用。請按照以下的 mutation 和步驟操作:
使用
itemCreateWorkflow中的measurements陣列透過 API 直接包含測量資料。mutation {partyCreateWorkflow(input: [{ location: { countryCode: US }, type: ORIGIN }{location: {countryCode: PLline1: "ul. Leonarda 87"locality: "Lublin"postalCode: "20-625"}person: {email: "test@gmail.com"firstName: "firstName"lastName: "lastName"phone: "5022303021"companyName: "goProTest"metadata: { key: "key", value: "value" }}type: DESTINATION}]) {typeidorganization}itemCreateWorkflow(input: [{amount: 500currencyCode: USDcountryOfOrigin: USquantity: 1description: "Red Wine Sparkling"sku: "15120"measurements: [{ type: ALCOHOL_BY_VOLUME, value: 12, unitOfMeasure: PERCENTAGE }{ type: VOLUME, value: 750, unitOfMeasure: MILLILITER }]}]) {idnameproductIdskuamounthsCodedescription}cartonizeWorkflow {idtypeitems {item {id}}}shipmentRatingCreateWorkflow(input: {amount: 15currencyCode: EURserviceLevelCode: "ups.worldwide_expedited"}) {idserviceLevelCodeamount}landedCostCalculateWorkflow(input: {endUse: NOT_FOR_RESALEtariffRate: ZONOS_PREFERREDcalculationMethod: DDP_PREFERRED}) {idlandedCostGuaranteeCodeamountSubtotals {taxesitemsshippingfeesdutieslandedCostTotal}shipmentRating {displayName}methodduties {item {hsCodeidskuamount}amountcurrencynotedescriptionformula}taxes {item {idskuamounthsCode}amountcurrencydescriptionformulatypenote}fees {item {idskuamount}amountcurrencydescription}}}這個頁面有幫助嗎?