DOCS

Retrieve tax ID

Retrieve tax ID

Low-value shipment 처리에 필요한 tax ID를 retrieve하세요.

GraphQL

Landed Cost API를 사용하면 Landed Cost quote 생성 시 또는 생성 후 taxId를 request할 수 있습니다. 이 taxId는 destination country 및 item value 기준 quote가 생성되는 shipment에 remittance가 필요한 경우에만 반환됩니다. Label 및 commercial invoice 생성 시 carrier에 이 taxId를 전달할 수 있습니다.

Retrieve tax ID for remittance 

아래 mutation 및 query는 applicable taxId가 response에 반환되는 방법을 보여줍니다. Shipment에 taxId가 적용되지 않으면 taxId field가 empty입니다.

1mutation {
2 landedCostCalculateWorkflow(
3 input: { endUse: NOT_FOR_RESALE, method: DAP, tariffRate: ZONOS_PREFERRED }
4 ) {
5 id
6 amountSubtotals {
7 duties
8 }
9 
10 duties {
11 amount
12 currency
13 }
14 taxes {
15 amount
16 currency
17 }
18 fees {
19 amount
20 description
21 currency
22 }
23 remittance {
24 amount
25 description
26 note
27 }
28 taxId {
29 taxIdNumber
30 countryCode
31 }
32 }
33}
1query {
2 landedCost(id: "landed_cost_f809d1a3-8551-46c2-9d20-b0cdb16b39b6") {
3 taxId {
4 taxIdNumber
5 }
6 }
7}
GraphQL API ReferenceTypes, inputs, and operations used in this guide

이 페이지가 도움이 되었나요?