DOCS

Retrieve tax id

/

税IDを取得

低価値の出荷を処理するために必要な税IDを取得します。

GraphQL

Landed Cost APIを使用している場合、Landed Cost 見積もりを作成する際、または作成後に taxId をリクエストできます。この taxId は、見積もりが生成される出荷が、目的地の国と商品価値に基づいて送金を必要とする場合にのみ返されます。この taxId は、ラベルと商業インボイスを作成する際に運送業者に渡すことができます。

送金のための税IDを取得 

以下で参照されるミューテーションとクエリは、適用可能な 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
    }
  }
}

このページは役に立ちましたか?