Zonos logo
DOCS

Retrieve tax id

/

Retrieve tax ID for remittance

COMING SOON

Learn how to retrieve the tax ID for low-value shipments.

This query will allow you to retrieve the proper taxId that should be used for remittance purposes when you are creating shipments outside of Dashboard. This taxId will only be returned if you are using our Landed Cost guarantee and the landedCostId being referenced will be for a shipment going to a country that requires remittance for low-value shipments. This taxId can then be passed to the carrier when you are creating the label and commercial invoice.


Retrieve tax ID for shipments that require remittance 

Mutation

1
2
3
4
5
6
7
8
9
10
query {
	taxIdFindByLandedCostId(landedCostID: ID) {
		{
			id
			countryCode
			taxIdNumber
			type
		}
	}
}

Variables

1
2
3
{
  "landedCostId": "landed_cost_e709a4ee-15f6-494b-bfec-54d2bb20cae9"
}

Response

1
2
3
4
5
6
7
8
{
  "taxId": {
    "id": "taxId_82896496-a276-11ed-a8fc-0242ac120002",
    "countryCode": "AU",
    "taxIdNumber": "1234567890",
    "type": "GST"
  }
}