Skip to main content

Get Remita Salary History

Overview​

Returns the salary payment history for a borrower from the Remita platform. This query is used to verify a borrower's salary flow before creating or approving a loan request.

Command Details​

  • Command: GetRemitaSalaryHistoryQuery
  • Type: Query

API Endpoint​

POST /api/bpm/cmd

Request Structure​

FieldTypeRequiredDescription
firstNamestringNoBorrower's first name
lastNamestringNoBorrower's last name
middleNamestringNoBorrower's middle name
accountNumberstringNoBorrower's bank account number
bankCodestringNoCBN bank code
bvnstringNoBank Verification Number
phoneNumberstringNoBorrower's phone number
useMobileNumberForSearchboolNoSearch by mobile number instead of BVN (default: false)
authorisationChannelstringNoAuthorisation channel (default: "USSD")
authorisationCodestringNoRemita authorisation code

Try It Out​

POST/api/bpm/cmdGetRemitaSalaryHistoryQuery
Request Body

Response Structure​

{
"success": true,
"data": {
"bvn": "22345678901",
"employerName": "Acme Corporation",
"salaryHistory": [
{
"paymentDate": "2026-02-25",
"amount": 450000.00,
"accountNumber": "0012345678",
"bankCode": "058"
},
{
"paymentDate": "2026-01-25",
"amount": 450000.00,
"accountNumber": "0012345678",
"bankCode": "058"
}
],
"averageSalary": 450000.00,
"recordCount": 2
},
"message": "Salary history retrieved successfully"
}