This help will guide you through the setup and usage of our point of sale cash register software.
Search by keyword in the help section:
Add, modify, or delete VAT rates
Add a new VAT rate to your configuration
| Name | Necessary | Description |
|---|---|---|
shopID | Yes | Your institution's identifier |
key | Yes | Your API key |
data[title] | Yes | Title (required) |
data[accountingChapter] | No | Accounting chapter |
data[rate] | Yes | Rate (required) |
data[legal] | No | Legal mention |
Modify an existing VAT
| Name | Necessary | Description |
|---|---|---|
shopID | Yes | Your institution's identifier |
key | Yes | Your API key |
id | Yes | VAT rate identifier |
data[title] | No | Title (required) |
data[accountingChapter] | No | Accounting chapter |
data[rate] | No | Rate (required) |
data[legal] | No | Legal mention |
Remove an existing VAT
| Name | Necessary | Description |
|---|---|---|
shopID | Yes | Your institution's identifier |
key | Yes | Your API key |
id | Yes | VAT rate identifier |
async function editVAT(){ const body = new URLSearchParams({ shopID: SHOPID, key: APIKEY, id: 123, 'data[title]': '20% VAT', 'data[rate]': 20 }); const res = await fetch("https://kash.click/workers/editVat.php", { method: "POST", headers: { "Content-Type": "application/x-www-form-urlencoded" }, body }); let payload; try{ payload = await res.json(); }catch{ payload = await res.text(); } console.log(payload);}
This document is made available under the terms of the licence Creative Commons Attribution 4.0 International (CC BY 4.0) .