DOCS

Retrieve tax id

/

检索税号

检索处理低价值货件所需的税号。

GraphQL

如果您正在使用Landed Cost API,在创建Landed Cost报价或创建后,可以请求taxId。仅当生成报价的货件根据目的地国家和商品价值需要汇款时,才会返回此taxId。然后,可以在创建标签和商业发票时将此taxId传递给承运人。

检索用于汇款的税号 

下面引用的变异和查询将显示响应中将返回一个适用的taxId。如果taxId不适用于货件,则taxId字段将为空。

请求
响应

变异

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
mutation {
  landedCostCalculateWorkflow(
    input: { endUse: NOT_FOR_RESALE, method: DAP, tariffRate: ZONOS_PREFERRED }
  ) {
    id
    amountSubtotals {
      duties
    }

    duties {
      amount
      currency
    }
    taxes {
      amount
      currency
    }
    fees {
      amount
      description
      currency
    }
    remittance {
      amount
      description
      note
    }
    taxId {
      taxIdNumber
      countryCode
    }
  }
}
请求
响应

查询

1
2
3
4
5
6
7
query {
  landedCost(id: "landed_cost_f809d1a3-8551-46c2-9d20-b0cdb16b39b6") {
    taxId {
      taxIdNumber
    }
  }
}

这个页面有帮助吗?


有问题吗?

联系我们。
在本页上: