GET
/
consumers
/
{consumer_id}
/
pos
/
sales
curl --request GET \
  --url https://api.chift.eu/consumers/{consumer_id}/pos/sales \
  --header 'Authorization: Bearer <token>'
{
  "total": 10,
  "tax_amount": 1,
  "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

Query Parameters

date_from
string
required
date_to
string
required
location_id
string | null

Response

200
application/json

Successful Response

The response is of type object.