ReshScore offers the ability to generate custom reports tailored to your specific needs. These reports provide in-depth insights into credit behavior, risk analysis, and financial health indicators for individuals or businesses.
Steps to request a custom report:
POST /reports/custom
{
"clientId": "123456",
"reportType": "credit-risk",
"parameters": {
"startDate": "2024-01-01",
"endDate": "2024-12-31"
}
}
ReshScore's bulk scoring feature allows you to submit multiple requests at once, reducing the time it takes to process large datasets.
How to make a batch request:
POST /credit-score/batch
{
"clientIds": ["123456", "654321", "789012"]
}
Best Practices:
Webhooks enable your system to receive real-time updates from ReshScore when specific events occur, such as credit score changes or fraud alerts.
How to set up webhooks:
Example of a webhook registration request:
POST /webhooks/register
{
"url": "https://yourdomain.com/webhooks",
"events": ["credit-score-update", "fraud-detection-alert"]
}
Example of a webhook payload:
{
"event": "credit-score-update",
"data": {
"clientId": "123456",
"newCreditScore": 780
}
}
Best Practices:
Errors may occur during API requests, and ReshScore provides meaningful error codes to help you troubleshoot issues.
Common error codes:
Best Practices: