Free cash register

Kash.click, free online POS software since 2014

Follow Us

Kash.click 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:

Gestion des taux de TVA

Ajoutez, modifiez, ou supprimez des taux de TVA

add un VAT rate

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

Ajouter une nouvelle TVA à votre configuration

POST parameters

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

edit un VAT rate

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

Modifier une TVA existante

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
idYesIdentifiant du VAT rate
data[title]NoTitle (required)
data[accountingChapter]NoAccounting chapter
data[rate]NoTaux (requis)
data[legal]NoLegal mention

del un VAT rate

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

Supprimer une TVA existante

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
idYesIdentifiant du VAT rate

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) .