This end-point gets an individual credit score from credit bureau.
Request URL: {{baseurl}}/credit-score
Request Body
SN | Field Name | Data Type | Max Length | Required | Description |
1 | phoneNo | String | 15 | No | The phone number tied to account of the individual whose score you seek. This field is required if the bvn is not available |
2 | bvn | String | 11 | No | The bank verification number for the individual whose score you seek. This field is required if the phone number tied to the account of this individual is not available |
Request Header
HTTP Verb: POST
Authentication: Bearer Token
Content-Type: application/json
Sample Request
{
“phoneNo”: “2348165794610”,
“bvn”: “22200092454”
}
Sample Response (Success)
{
“phoneNo”: null,
“bvn”: 12345678912,
“creditScore”: 540
}