# GET /api/invoice-payments > Invoice Payments - List all Invoice Payments - **Endpoint:** `GET /api/invoice-payments` - **Group:** Invoice Payments - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/InvoicePaymentsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `invoice_id` | Number | no | Optional filter by invoice ID | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/invoice-payments" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json [ { "id": "1", "invoice_id": "1", "amount": "100.00", "payment_date": "2024-01-15", "payment_method_id": "1" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/invoice-payments/get-invoice-payments/