GET
/
consumers
/
{consumer_id}
/
pos
/
closures
/
{date}
curl --request GET \
  --url https://api.chift.eu/consumers/{consumer_id}/pos/closures/{date} \
  --header 'Authorization: Bearer <token>'
{
  "date": "2025-01-01",
  "status": "closed",
  "closures": [
    {
      "id": "<string>",
      "total": 123,
      "tax_amount": 123,
      "payments": [
        {
          "payment_method_id": "payment_method-1",
          "payment_method_name": "Cash",
          "total": 11
        }
      ],
      "taxes": [
        {
          "tax_rate": "10",
          "tax_amount": "1",
          "total": "11"
        }
      ]
    }
  ]
}

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
required
date
string
required

Query Parameters

location_id
string | null

Response

200
application/json

Successful Response

The response is of type object.