Get Amounts Of A Receipt
You can use this endpoint to get the amounts of a receipt.
Request
GET /api/v1/receipts/:id/amounts
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/receipts/17/amounts' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Response
{
"data": [
{
"id": 1,
"receipt_id": 17,
"tax": "7.0000",
"quantity": "95.0000",
"amount": "823845853.00",
"invoicing_share": "1869916462.00",
"private_share": "53234379.00"
},
{
"id": 2,
// ...
}
]
}