Terminology
| Term | What it means |
|---|---|
| POS | The system in the restaurant that takes and manages orders. In this documentation, “you”. |
| Integration middleware | The system described here, sitting between the ordering platform and your POS. |
| Portal | The web interface where you manage your account, stores, keys and endpoints. |
| Brand | The top-level grouping. A brand holds one or more locations. |
| Location / store | A physical outlet with its own address. Receives orders independently. |
| Marketplace | A store where the restaurant delivers, not a platform courier. |
| POS endpoint | A URL of yours, registered in the portal, where we send notifications. |
| API key | The value sent on Authorization, in both directions of the integration. |
Identifiers
Section titled “Identifiers”partner_name
Section titled “partner_name”The name of your POS solution, assigned when the account is registered. You use a single
partner_name per POS solution, even if you serve many clients.
Letters and digits only.
store_id (LID)
Section titled “store_id (LID)”Uniquely identifies a location. The full format is:
partner_name__store_id │ │ │ └── you choose it when creating the location in the portal └──────────────── we assign it at registrationExample: with partner_name = gi20 and a store you name 001, the full identifier is gi20__001.
The separator is two underscore characters.
You receive it in every order, on the store_id field, and you send it in every store operation.
order_code
Section titled “order_code”The order’s alphanumeric code, also printed on the receipt. This is the identifier you search by in order lookup and the one you quote when writing to us about a case.
order_id
Section titled “order_id”The order’s internal numeric identifier. Useful for lifecycle operations, but not the lookup key.
Amounts and dates
Section titled “Amounts and dates”| Convention | Detail |
|---|---|
| Amounts | Always integers, in the currency subunit. 5700 means 57.00 RON. |
| Dates in orders | yyyy-MM-dd HH:mm:ss, in the store’s local time. |
| Dates in traces | Moments recorded by us are UTC, displayed converted to Romanian time. |
| Dates in temporary closing | ISO-8601 with offset, for example 2026-12-20T10:00:00+02:00. |