GraphQL
Landed Cost API를 사용하면 Landed Cost quote 생성 시 또는 생성 후 taxId를 request할 수 있습니다. 이 taxId는 destination country 및 item value 기준 quote가 생성되는 shipment에 remittance가 필요한 경우에만 반환됩니다. Label 및 commercial invoice 생성 시 carrier에 이 taxId를 전달할 수 있습니다.
taxId
아래 mutation 및 query는 applicable taxId가 response에 반환되는 방법을 보여줍니다. Shipment에 taxId가 적용되지 않으면 taxId field가 empty입니다.
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
Tax ID 조회
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를 전달할 수 있습니다.Remittance용 Tax ID 조회
아래 mutation 및 query는 applicable
taxId가 response에 반환되는 방법을 보여줍니다. Shipment에taxId가 적용되지 않으면taxIdfield가 empty입니다.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
이 페이지가 도움이 되었나요?