Get Credit Check List
Description:Credit check list
Authentication
This endpointAPI requiresallows authenticationyour usingapplication to retrieve a list of all Bearercredit Tokenchecks. The client must send the token in the Authorization header for every request.
Example
AuthenticationEndpoint
Header:
GET
If the token is missing or invalid, the API will return a 401 Unauthorized
response.
Endpoint
:
https://demo-api.frontpayment.no/api/v1/connect//credit/check/list
Method
:
GET
Authentication
:
Bearer
Response Structure
:
{
"status_code": "Integer",
"status_message": "String",
"message": "String",
"is_data": "Boolean",
"data": [
{
"date": "String",
"name": "String",
"type": "String",
"companyType": "String",
"organizationId": "String",
"personalNumber": "String",
"countryCode": "String",
"msisdn": "String",
"defaultProbability": "Integer",
"score": "Integer",
"scoreMessage": "String",
"riskLevel": "String"
}
]
}
Authorization
To
access this endpoint, include a Bearer Token
in the Authorization
header of your request. You can obtain this token from Frontpayment.
Response
:A
successful request will return a 200 OK
status with the following JSON payload:
{
"status_code": 200,
"status_message": "OK",
"message": "creditCheckHistoryRetrievedSuccessfully",
"is_data": true,
"data": [
{
"date": "19.03.2025",
"name": "MONRAD SIV NINA",
"type": "Private",
"companyType": null,
"organizationId": null,
"personalNumber": "04*******85",
"countryCode": "+47",
"msisdn": null,
"defaultProbability": "15% - 27%",
"score": 441,
"scoreMessage": "High to moderate risk, credit up to NOK 20,000 can be approved",
"riskLevel": "Moderate"
},
{
"date": "15.03.2025",
"name": "KNUTSMOEN EIENDOM ANS",
"type": "Corporate",
"companyType": "ANS",
"organizationId": "998379342",
"personalNumber": null,
"countryCode": null,
"msisdn": null,
"defaultProbability": "0",
"score": 0,
"scoreMessage": "Credit information could not be retrieved",
"riskLevel": "High"
}
]
}
API
returns a
510
error, it means something failed
on the server side
{
"status_code": 510,
"status_message": "Execution Exception Occurred",
"message": "Something Went Wrong",
"is_error": true,
"errors": "Array"
}