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:
Ajoutez, modifiez, ou supprimez des taux de TVA
Ajouter une nouvelle TVA à votre 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 | Taux (requis) |
data[legal] | No | Legal mention |
Modifier une TVA existante
| Name | Necessary | Description |
|---|---|---|
shopID | Yes | Your institution's identifier |
key | Yes | Your API key |
id | Yes | Identifiant du VAT rate |
data[title] | No | Title (required) |
data[accountingChapter] | No | Accounting chapter |
data[rate] | No | Taux (requis) |
data[legal] | No | Legal mention |
Supprimer une TVA existante
| Name | Necessary | Description |
|---|---|---|
shopID | Yes | Your institution's identifier |
key | Yes | Your API key |
id | Yes | 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);}
This document is made available under the terms of the licence Creative Commons Attribution 4.0 International (CC BY 4.0) .