Tax Calculation

Purpose

For tax exclusive locations that uses Generic POS, the tax calculation webhook URL must be provided This endpoint should be provided by the POS.

Content

This request sends an entire Deliverect Order to the POS, and waits for the taxes response, as mentioned above on the Results section.

Response

In response to this event, we wait the following response attribute:

  • taxes: list[dict]
    • name: string
    • taxClassId: integer
    • total: integer

Webhook Response

{
  "taxes": [
    {
    	"name": "tax-name",
    	"taxClassId": 123,
			"total": 4455
		}
	]
}
Language