Skip to main content

Get Remita Payment History

Overview​

Returns the repayment history for a specific loan from the Remita platform. This query retrieves all salary deduction payments that have been collected against the loan's mandate.

Command Details​

  • Command: GetRemitaPaymentHistoryQuery
  • Type: Query

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
idlongNoID of the loan request
authorisationCodestringNoRemita authorisation code
customerIdstringNoRemita customer identifier
mandateRefstringNoMandate reference number

Try It Out​

POST/api/bpm/cmdGetRemitaPaymentHistoryQuery
Request Body

Response Structure​

{
"success": true,
"data": {
"id": 5001,
"mandateReference": "REM-MND-2026-0042",
"totalRepaid": 93000.00,
"outstandingBalance": 4907000.00,
"payments": [
{
"paymentDate": "2026-03-01",
"amount": 500000.00,
"status": "Successful",
"remitaReference": "REM-PAY-2026-03-001"
},
{
"paymentDate": "2026-02-01",
"amount": 500000.00,
"status": "Successful",
"remitaReference": "REM-PAY-2026-02-001"
}
],
"paymentCount": 2
},
"message": "Payment history retrieved successfully"
}