Aide Caisse enregistreuse : Télécharger vos ventes

Caisse. Enregistreuse

Logiciel de caisse enregistreuse gratuit, en ligne depuis 2014.

Follow Us

Centre d'aide caisse enregistreuse

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

Télécharger vos ventes

Téléchargez la liste de vos commandes enregistrées

GET /workers/getOrders.php

URL de base : https://caisse.enregistreuse.fr/workers/getOrders.php

Paramètres

NomeTypeNecessárioDescrição
idboutiquestringsimIdentifiant de compte boutique (SHOPID)
keystringsimVotre token (APIKEY)
validatedOrdersboolNãoCommandes / Devis
from_date_ISO8601string (ISO8601 date)NãoPeriod start
to_date_ISO8601string (ISO8601 date)NãoPeriod end
filterDeliveryMethodint [0...6]NãoIf provided, only orders of the specified delivery method will be shown

Exemples JavaScript

function buildUrl(path, params){ const qs = new URLSearchParams(params); return `${path}?${qs.toString()}`;}const SHOPID = "[SHOPID]";const APIKEY = "[APIKEY]";// 1) Export des commandesconst urlCsv = buildUrl("https://caisse.enregistreuse.fr/workers/getSales.php", { idboutique: SHOPID, key: APIKEY, from_date_ISO8601: '2025-10-26T00:00:00Z',  to_date_ISO8601: '2025-10-26T23:59:59Z'});fetch(urlCsv).then(r=>r.text()).then(csv=>console.log(csv));
Register now
Licence Creative Commons Ce document est mis à disposition selon les termes de la licence Creative Commons Attribution 4.0 International (CC BY 4.0) .