Retrieve the tax ID needed to process low-value shipments.
GraphQL
If you are using the Landed Cost API you can request a taxId when creating a Landed Cost quote or after it has been created. This taxId will only be returned if the shipment that the quote is being generated for will require remittance based on the destination country and item value. This taxId can then be passed to the carrier when you are creating the label and commercial invoice.
The mutations and queries referenced below will show how an applciable taxId will be returned in the response. In the event that a taxId does not apply to the shipment the taxId field will be empty.
Retrieve tax ID
Retrieve tax ID
Retrieve the tax ID needed to process low-value shipments.GraphQL
If you are using the Landed Cost API you can request a
taxIdwhen creating a Landed Cost quote or after it has been created. ThistaxIdwill only be returned if the shipment that the quote is being generated for will require remittance based on the destination country and item value. ThistaxIdcan then be passed to the carrier when you are creating the label and commercial invoice.Retrieve tax ID for remittance
The mutations and queries referenced below will show how an applciable
taxIdwill be returned in the response. In the event that ataxIddoes not apply to the shipment thetaxIdfield will be 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
Was this page helpful?