List Payments
GET /payments
Returns payments for the authenticated clinic filtered by date range.
Scope required: finance.read
Query Parameters
| Parameter | Type | Description |
|---|---|---|
from | string | Start date — Y-m-d (default: last 30 days) |
to | string | End date — Y-m-d (default: today) |
limit | integer | Max results — max 100 (default: 20) |
Response 200
{
"data": [ { "...": "payment objects" } ],
"meta": { "count": 12 }
}
See Invoice Payments for the full payment object shape.