v1

latestOpenAPI 3.1.02026-07-22155403592.5 KB
Point of Sale
Closures

Get report for a specific date (E-reporting)

The endpoints returns the report for a specific date containing the required data for e-reporting

get/consumers/{consumer_id}/pos/report

Path parameters

consumer_idstring uuid required

Query parameters

datestring date required

Filter based on the business date

location_idstring nullable

Unique identifier of the location. If none passed, we will use the selected location by the end-user. If no location was selected, we will return an error.

Response

Successful Response

datestring date required

Date of the report

location_idstring required

Unique identifier of the location

Example response

{
  "date": "2025-01-01",
  "location_id": "371ca583-d218-4900-b236-397532cf0e52",
  "orders": [
    {
      "currency": "EUR",
      "total": 10,
      "tax_amount": 1,
      "tax_duedatetypecode": "4",
      "total_orders": 10,
      "taxes": [
        {
          "tax_id": "371ca583-d218-4900-b236-397532cf0e39"
        }
      ]
    }
  ],
  "payments": [
    {
      "tax_id": "371ca583-d218-4900-b236-397532cf0e39",
      "payment_method_id": "payment_method-1",
      "payment_method_name": "Cash",
      "currency": "EUR"
    }
  ]
}