GraphQL
如果您使用 Landed Cost API,您可以在创建 Landed Cost 报价时或创建后请求 taxId。只有当为其生成报价的货物根据目的地国家和物品价值需要汇款时,才会返回此 taxId。然后,当您创建标签和商业发票时,可以将此 taxId 传递给承运商。
taxId
下面引用的变更和查询将显示如何在响应中返回适用的 taxId。如果 taxId 不适用于货物,taxId 字段将为空。
mutation {
landedCostCalculateWorkflow(
input: { endUse: NOT_FOR_RESALE, method: DAP, tariffRate: ZONOS_PREFERRED }
) {
id
amountSubtotals {
duties
}
duties {
amount
currency
taxes {
fees {
description
remittance {
note
taxId {
taxIdNumber
countryCode
query {
landedCost(id: "landed_cost_f809d1a3-8551-46c2-9d20-b0cdb16b39b6") {
landedCostCalculateWorkflow
检索税务 ID
检索税务 ID
检索处理低价值货物所需的税务 ID。GraphQL
如果您使用 Landed Cost API,您可以在创建 Landed Cost 报价时或创建后请求
taxId。只有当为其生成报价的货物根据目的地国家和物品价值需要汇款时,才会返回此taxId。然后,当您创建标签和商业发票时,可以将此taxId传递给承运商。为汇款检索税务 ID
下面引用的变更和查询将显示如何在响应中返回适用的
taxId。如果taxId不适用于货物,taxId字段将为空。mutation {landedCostCalculateWorkflow(input: { endUse: NOT_FOR_RESALE, method: DAP, tariffRate: ZONOS_PREFERRED }) {idamountSubtotals {duties}duties {amountcurrency}taxes {amountcurrency}fees {amountdescriptioncurrency}remittance {amountdescriptionnote}taxId {taxIdNumbercountryCode}}}query {landedCost(id: "landed_cost_f809d1a3-8551-46c2-9d20-b0cdb16b39b6") {taxId {taxIdNumber}}}landedCostCalculateWorkflow
这个页面有帮助吗?