List all Invoice Payments

GET/api/invoice-payments

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
invoice_id Number optional Optional filter by invoice ID
curl -X GET "https://yoursite.com/api/invoice-payments" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

[
  {
    "id": "1",
    "invoice_id": "1",
    "amount": "100.00",
    "payment_date": "2024-01-15",
    "payment_method_id": "1"
  }
]
MethodGET
Path/api/invoice-payments
GroupInvoice Payments
Sincev1.0.0
Defined inRestApi/Controllers/InvoicePaymentsController.php