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 déclinaisons
Ajouter une nouvelle déclinaison à votre catalogue
| Name | Necessary | Description |
|---|---|---|
shopID | Yes | Your institution's identifier |
key | Yes | Your API key |
data[title] | Yes | Store Name |
Modifier une déclinaison de votre catalogue
| Name | Necessary | Description |
|---|---|---|
shopID | Yes | Your institution's identifier |
key | Yes | Your API key |
id | Yes | Identifiant du Déclinaisons |
data[title] | No | Store Name |
Supprimer une déclinaison de votre catalogue
| Name | Necessary | Description |
|---|---|---|
shopID | Yes | Your institution's identifier |
key | Yes | Your API key |
id | Yes | Identifiant du Déclinaisons |
async function editVariation(){ const body = new URLSearchParams({ shopID: SHOPID, key: APIKEY, id: 123, 'data[title]': 'Variation name' }); const res = await fetch("https://kash.click/workers/editVariation.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) .