Invoice Payments
GET /invoices/{id}/payments
Returns all payments for a specific invoice.
Scope required: finance.read
Response 200
{
"data": [
{
"id": "018c1d2e-3f4a-7b5c-d6e7-f8a9b0c1d2e3",
"invoice_id": "018b1c2d-3e4f-7a5b-c6d7-e8f9a0b1c2d3",
"patient": { "id": "…", "full_name": "Ali Yılmaz" },
"amount": 1770.00,
"currency": "TRY",
"status": "completed",
"type": "payment",
"payment_method": "cash",
"description": null,
"payment_date": "2026-01-18T11:30:00+03:00",
"created_at": "2026-01-18T11:30:00+03:00"
}
],
"meta": { "count": 1 }
}