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 :
Ajoutez, modifiez, ou supprimez des taux de TVA
Ajouter une nouvelle TVA à votre configuration
| Naam | Verplicht | Beschrijving |
|---|---|---|
shopID | Ja | Identifiant de votre établissement |
key | Ja | Votre clé pour l'API |
data[title] | Ja | Intitulé (requis) |
data[accountingChapter] | Neen | Boekhoudkundig hoofdstuk |
data[rate] | Ja | Taux (requis) |
data[legal] | Neen | Juridische kennisgeving |
Modifier une TVA existante
| Naam | Verplicht | Beschrijving |
|---|---|---|
shopID | Ja | Identifiant de votre établissement |
key | Ja | Votre clé pour l'API |
id | Ja | Identifiant du VAT rate |
data[title] | Neen | Intitulé (requis) |
data[accountingChapter] | Neen | Boekhoudkundig hoofdstuk |
data[rate] | Neen | Taux (requis) |
data[legal] | Neen | Juridische kennisgeving |
Supprimer une TVA existante
| Naam | Verplicht | Beschrijving |
|---|---|---|
shopID | Ja | Identifiant de votre établissement |
key | Ja | Votre clé pour l'API |
id | Ja | Identifiant du VAT rate |
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);}
Ce document est mis à disposition selon les termes de la licence Creative Commons Attribution 4.0 International (CC BY 4.0) .