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
| Nome | Necessário | Descrição |
|---|---|---|
shopID | sim | Identifiant de votre établissement |
key | sim | Votre clé pour l'API |
data[title] | sim | Intitulé (requis) |
data[accountingChapter] | Não | Chapitre comptable |
data[rate] | sim | Taux (requis) |
data[legal] | Não | Menções legais |
Modifier une TVA existante
| Nome | Necessário | Descrição |
|---|---|---|
shopID | sim | Identifiant de votre établissement |
key | sim | Votre clé pour l'API |
id | sim | Identifiant du VAT rate |
data[title] | Não | Intitulé (requis) |
data[accountingChapter] | Não | Chapitre comptable |
data[rate] | Não | Taux (requis) |
data[legal] | Não | Menções legais |
Supprimer une TVA existante
| Nome | Necessário | Descrição |
|---|---|---|
shopID | sim | Identifiant de votre établissement |
key | sim | Votre clé pour l'API |
id | sim | 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) .