curl --request GET \
--url https://api.chift.eu/consumers/{consumer_id}/pos/orders \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"id": "371ca583-d218-4900-b236-397532cf0e52",
"order_number": "1",
"creation_date": "2025-01-01T00:00:00Z",
"closing_date": "2025-01-01T00:00:00Z",
"service_date": "2025-01-01T00:00:00Z",
"device_id": "device-123",
"total": 11,
"tax_amount": 1,
"total_discount": 10,
"total_refund": 5,
"total_tip": 1,
"delivery_fee": 1,
"currency": "EUR",
"country": "FR",
"loyalty": 100,
"customer_id": "customer-123",
"location_id": "location-123",
"taxes": [
{
"tax_rate": "10",
"tax_amount": "1",
"total": "11"
}
],
"guests": 1,
"payments": [
{
"id": "payment-123",
"payment_method_id": "payment-method-123",
"payment_method_name": "Cash",
"total": 11,
"tip": 1,
"status": "Completed",
"currency": "EUR",
"date": "2025-01-01T00:00:00Z"
}
],
"items": [
{
"id": "123",
"type": "product",
"menu_id": "456",
"quantity": 1,
"unit_price": 10,
"total": 11,
"tax_amount": 1,
"tax_rate": 10,
"description": "Pizza",
"discounts": [],
"product_id": "789",
"accounting_category_id": "123"
}
]
}
],
"total": 1,
"page": 2,
"size": 2
}
Returns a list of the orders
curl --request GET \
--url https://api.chift.eu/consumers/{consumer_id}/pos/orders \
--header 'Authorization: Bearer <token>'
{
"items": [
{
"id": "371ca583-d218-4900-b236-397532cf0e52",
"order_number": "1",
"creation_date": "2025-01-01T00:00:00Z",
"closing_date": "2025-01-01T00:00:00Z",
"service_date": "2025-01-01T00:00:00Z",
"device_id": "device-123",
"total": 11,
"tax_amount": 1,
"total_discount": 10,
"total_refund": 5,
"total_tip": 1,
"delivery_fee": 1,
"currency": "EUR",
"country": "FR",
"loyalty": 100,
"customer_id": "customer-123",
"location_id": "location-123",
"taxes": [
{
"tax_rate": "10",
"tax_amount": "1",
"total": "11"
}
],
"guests": 1,
"payments": [
{
"id": "payment-123",
"payment_method_id": "payment-method-123",
"payment_method_name": "Cash",
"total": 11,
"tip": 1,
"status": "Completed",
"currency": "EUR",
"date": "2025-01-01T00:00:00Z"
}
],
"items": [
{
"id": "123",
"type": "product",
"menu_id": "456",
"quantity": 1,
"unit_price": 10,
"total": 11,
"tax_amount": 1,
"tax_rate": 10,
"description": "Pizza",
"discounts": [],
"product_id": "789",
"accounting_category_id": "123"
}
]
}
],
"total": 1,
"page": 2,
"size": 2
}
This access token needs to be included in each of your request to the Chift API.
Page number
x >= 1
Page size
1 <= x <= 100
open
, closed
, all
Successful Response
The response is of type object
.