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": 66,
"receipt_id": 1,
"tax": "19.0000",
"quantity": "1.0000",
"amount": "89.50",
"invoicing_share": "89.50",
"private_share": null,
"is_amount_net": false,
"is_invoice_amount_net": false
},
{
"id": 67,
"receipt_id": 1,
"tax": "7.0000",
"quantity": "2.0000",
"amount": "15.30",
"invoicing_share": "15.30",
"private_share": null,
"is_amount_net": false,
"is_invoice_amount_net": false
}
]
}