Invoice Payment

List

Retrieve a paginated list of Invoice Payment records. Supports filtering, sorting, and search.

get/api/cp/invoice-payment

Response

Successful response

idinteger

Id

invoice_idinteger

Invoice Id (references invoice.id)

payment_idinteger

Payment Id (references payment.id)

totalnumber

Total

Example response

[
  {
    "id": 12345,
    "invoice_id": 1,
    "payment_id": 1,
    "total": 10
  }
]

Changes