Kassa

Logiciel de caisse enregistreuse gratuit, en ligne depuis 2014.

Follow Us

Centre d'aide caisse enregistreuse

This help will guide you through the setup and usage of our point of sale cash register software.

Rechercher par mot clé dans l'aide :

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

Paramètres POST

NaamVerplichtBeschrijving
shopIDJaIdentifiant de votre établissement
keyJaVotre clé pour l'API
data[title]JaIntitulé (requis)
data[accountingChapter]NeenBoekhoudkundig hoofdstuk
data[rate]JaTaux (requis)
data[legal]NeenJuridische kennisgeving

edit un VAT rate

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

Modifier une TVA existante

Paramètres POST

NaamVerplichtBeschrijving
shopIDJaIdentifiant de votre établissement
keyJaVotre clé pour l'API
idJaIdentifiant du VAT rate
data[title]NeenIntitulé (requis)
data[accountingChapter]NeenBoekhoudkundig hoofdstuk
data[rate]NeenTaux (requis)
data[legal]NeenJuridische kennisgeving

del un VAT rate

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

Supprimer une TVA existante

Paramètres POST

NaamVerplichtBeschrijving
shopIDJaIdentifiant de votre établissement
keyJaVotre clé pour l'API
idJaIdentifiant du VAT rate

Exemple JavaScript

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 Ce document est mis à disposition selon les termes de la licence Creative Commons Attribution 4.0 International (CC BY 4.0) .