Aide Caisse enregistreuse : Télécharger vos ventes

Free cash register

Free-cash-register.net, 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.

Télécharger vos ventes

Download the list of your saved orders

GET /workers/getOrders.php

Base URL: https://www.free-cash-register.net/workers/getOrders.php

Settings

NameTypeNecessaryDescription
idboutiquestringYesShop Account ID (SHOPID)
keystringYesYour token (APIKEY)
validatedOrdersboolNoOrders / Quotes
from_date_ISO8601string (ISO8601 date)NoPeriod start
to_date_ISO8601string (ISO8601 date)NoPeriod end
filterDeliveryMethodint [0...6]NoIf provided, only orders of the specified delivery method will be shown

JavaScript Examples

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://www.free-cash-register.net/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 This document is made available under the terms of the licence Creative Commons Attribution 4.0 International (CC BY 4.0) .