Customers
Get customer payments
Retrieve all payments made by a specific customer.
get/api/customers/{id}/payments
Path parameters
idstring required
Customer ID
Response
List of customer payments
Example response
[
{
"id": "clx1234567890",
"invoiceId": "clxinv123",
"provider": "paystack",
"providerTransactionId": "PAY_txn_abc123",
"amount": "99.9900",
"currency": "USD",
"status": "SUCCEEDED",
"failureReason": "Insufficient funds"
}
]