Scorecard¶
Depending on the scorecard you are using we provide 3 levels of information.
Only score.¶
This option only provides you with score for customer and status of response.
Response
{
"status": "ok",
"data": {
"score": 532
}
}
Score & variables used in scorecard¶
This option provides you with score for customer, variables used for calculating score and status of response. You can use these variables to verify score, better understand how we calculate it or use them for any other downstream usecases.
Response
{
"status": "ok",
"data": {
"score": 532,
"variables": {
"income_average_monthly_income":632.33,
"months_with_income":2,
"..."
}
}
}
Score & all variables that OB score calculates¶
This option provides you with score for customer, all variables that are calculated by OB score and status of response. You can use these variables for any other downstream usecase.
Response
{
"status": "ok",
"data": {
"score": 532
"variables": {
"income_average_monthly_income":632.33,
"months_with_income":2,
"..."
}
}
}