Retrieve tax ID for remittance
아래 mutation 및 query는 applicable taxId가 response에 반환되는 방법을 보여줍니다. Shipment에 taxId가 적용되지 않으면 taxId field가 empty입니다.
1
mutation {2
landedCostCalculateWorkflow(3
input: { endUse: NOT_FOR_RESALE, method: DAP, tariffRate: ZONOS_PREFERRED }4
) {5
id6
amountSubtotals {7
duties8
}9
10
duties {11
amount12
currency13
}14
taxes {15
amount16
currency17
}18
fees {19
amount20
description21
currency22
}23
remittance {24
amount25
description26
note27
}28
taxId {29
taxIdNumber30
countryCode31
}32
}33
}1
query {2
landedCost(id: "landed_cost_f809d1a3-8551-46c2-9d20-b0cdb16b39b6") {3
taxId {4
taxIdNumber5
}6
}7
}GraphQL API ReferenceTypes, inputs, and operations used in this guide
MUTATIONS
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를 전달할 수 있습니다.