Aide Caisse enregistreuse : Gestion des clients

Free cash register

Kash.click, free online POS software since 2014

Follow Us

Cash Register Help Center

This help will guide you through the setup and usage of our point of sale cash register software.

Customer management

Add, edit, or delete customers

Add a customer account

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

Add a new customer to your customer file

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
data[title]NoTitle
data[surname]NoFirst name
data[name]NoSurname
data[position]NoPosition (on the interface)
data[email]NoEmail
data[phone]NoPhone
data[addressline1]NoAddress line 1
data[addressline2]NoAddress line 2
data[adressComment]NoAddress comment
data[postcode]NoPostcode
data[city]NoCity
data[country]NoCountries (FR, EN, BE, ...)
data[identificationID]NoIdentity document number
data[lat]NoLatitude (float)
data[lng]NoLongitude (float)
data[commentPrivate]NoPrivate comment
data[commentPublic]NoPublic comment
data[registrationNumber]NoCompany Registration number
data[VATnum]NoVAT number
data[barcode]NoBarcode
data[blacklist]NoBlacklist
data[clientGroupID]NoSIRET (14 characters)
data[phone2]NoPhone 2
data[birthDate]NoDate of birth (timestamp)
data[activityCode]NoAccounting code

Edit a customer account

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

Edit a customer in your customer file

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
idYesCustomer ID
data[title]NoTitle
data[surname]NoFirst name
data[name]NoSurname
data[position]NoPosition (on the interface)
data[email]NoEmail
data[phone]NoPhone
data[addressline1]NoAddress line 1
data[addressline2]NoAddress line 2
data[adressComment]NoAddress comment
data[postcode]NoPostcode
data[city]NoCity
data[country]NoCountries (FR, EN, BE, ...)
data[identificationID]NoIdentity document number
data[lat]NoLatitude (float)
data[lng]NoLongitude (float)
data[commentPrivate]NoPrivate comment
data[commentPublic]NoPublic comment
data[registrationNumber]NoCompany Registration number
data[VATnum]NoVAT number
data[barcode]NoBarcode
data[blacklist]NoBlacklist
data[clientGroupID]NoSIRET (14 characters)
data[phone2]NoPhone 2
data[birthDate]NoDate of birth (timestamp)
data[activityCode]NoAccounting code

Delete a customer account

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

Remove a customer from your customer file

POST parameters

NameNecessaryDescription
shopIDYesYour institution's identifier
keyYesYour API key
idYesCustomer ID

JavaScript example

async function editClient(){ const body = new URLSearchParams({  shopID: SHOPID,  key: APIKEY,  id: 123,  'data[name]': 'Dupond' }); const res = await fetch("https://kash.click/workers/editClient.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) .