I am using ECOMMERCE SERVICE API (https://docs.clover.com/reference/postorders) to create custom orders and I would like to have taxes included in my receipt. It seems tax_rates property did not work in this case. It was able to submit the order without tax_rates, but an error was occurred when included tax_rates. It said "
curl --request POST \ --url https://scl-sandbox.dev.clover.com/v1/orders \ --header 'accept: application/json' \ --header 'content-type: application/json' { "items": [ { "tax_rates": [ { "name": "GST", "tax_amount": 1000 } ] } ] }
Has anyone had same issue with using the ECOMMERCE SERVICE API?