Free cash register

Kash.click, free online POS software since 2014

Follow Us

Help Center

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:

VAT rate management

Add, modify, or delete VAT rates

Add a VAT rate

POST https://kash.click/workers/addVat.php

Add a new VAT rate to your configuration

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
data[title]YesTitle (required)
data[accountingChapter]NoAccounting chapter
data[rate]YesRate (required)
data[legal]NoLegal mention

Change a VAT rate

POST https://kash.click/workers/editVat.php

Modify an existing VAT

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
idYesVAT rate identifier
data[title]NoTitle (required)
data[accountingChapter]NoAccounting chapter
data[rate]NoRate (required)
data[legal]NoLegal mention

Delete a VAT rate

POST https://kash.click/workers/delVat.php

Remove an existing VAT

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
idYesVAT rate identifier

JavaScript example

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);}
Register now
Licence Creative Commons This document is made available under the terms of the licence Creative Commons Attribution 4.0 International (CC BY 4.0) .