Free cash register

Kash.click, free online POS software since 2011

Follow Us

Help Center

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:

User management

Add, edit, or delete users

Add a user

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

Adding a new user

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
data[name]YesLogin
data[password]YesPassword
data[email]YesEmail
data[rights]YesUser rights [admin|manager|comptable|user|prepa|livreur|stock]
data[barcode]NoBarcode
data[image]NoImage

Edit a user

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

Edit a user

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
idYesUser ID
data[name]NoLogin
data[password]NoPassword
data[email]NoEmail
data[rights]NoUser rights [admin|manager|comptable|user|prepa|livreur|stock]
data[barcode]NoBarcode
data[image]NoImage

Delete a user

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

Delete a user

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
idYesUser ID

JavaScript example

async function editUser(){ const body = new URLSearchParams({  shopID: SHOPID,  key: APIKEY,  id: 123,  'data[name]': 'vendeur',  'data[rights]': 'user' }); const res = await fetch("https://kash.click/workers/editUser.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 This document is made available under the terms of the licence Creative Commons Attribution 4.0 International (CC BY 4.0) .