Credit Score and Report
These endpoints provide access to the credit details of a customer from The Credit Bureau.
Process Flow
Make a call to the required endpoint Credit Score or Credit Score History)
Request
curl https://sandbox.interswitchng.com//v1/credit-score?msisdn=2348123456789 \
-H "Authorization: <token>" \
-H "Content-Type: application/json"
-X GET
curl https://sandbox.interswitchng.com/v1/credit-score/history?msisdn=2348123456789 \
-H "Authorization: <token>" \
-H "Content-Type: application/json"
-X GET
Response
{
“responseCode”: “00”,
“responseDescription”: “Successful”,
“creditScores”: [
{
“id”: 487,
“msisdn”: “2348123456789”,
“score”: “32”,
“dateCreated”: “2020-09-04”
}
]
}
{
"responseCode": "00",
"responseDescription": "Successful",
"creditScores":
[
{
"msisdn": "2348123456789",
"score": "40",
"dateCreated": "2018-07-10"
},
{
"msisdn": " 2348123456789 ",
"score": "30",
"dateCreated": "2018-07-05"
}
]
}
Updated 9 months ago