Skip to main content
GET
/
consumers
/
{consumer_id}
/
pos
/
report
Get report for a specific date (E-reporting)
curl --request GET \
  --url https://api.chift.eu/consumers/{consumer_id}/pos/report \
  --header 'Authorization: Bearer <token>'
{
  "date": "2023-12-25",
  "location_id": "<string>",
  "orders": [],
  "payments": []
}

Authorizations

Authorization
string
header
required

This access token needs to be included in each of your request to the Chift API.

Path Parameters

consumer_id
string<uuid>
required

Query Parameters

date
string<date>
required

Filter based on the business date

location_id
string | null

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

date
string<date>
required

Date of the report

Example:

"2025-01-01"

location_id
string
required

Unique identifier of the location

Example:

"371ca583-d218-4900-b236-397532cf0e52"

orders
ReportOrders · object[] | null

List of orders related to the report

payments
ReportPayments · object[] | null

List of payments related to the report