post https://cloud.digifi.io/v2/de/api/decision-processing
How to run a decision or integration using the DigiFi API.
The Run Decision API can be used to execute a decision strategy. You can pass either a single decision
object into the request (to generate a single sub-decision) or pass multiple decision
objects to simultaneously run multiple sub-decisions.
The API response will include decision-level summary information, the result of each sub-decision (pass
, failed
or error
), the variables generated for each sub-decision and other useful information.
Example Request
Below please find the JSON body for an example request:
{
"decisionName": "Decision 10",
"applicationId": "6152dc6e8129870012b7c2dc",
"decisionClientId": "101",
"returnOnlyPassed": false,
"commonInputs": {
"rate": 500
},
"returnDataSources": false,
"decisions": [
{
"strategyName": "new_eligibility",
"strategyStatus": "testing",
"inputs": {
"loan_purpose": "Purchase",
"loan_amount": 2450000
}
}, {
"strategyName": "a1_eligibility",
"strategyStatus": "active",
"inputs": {
"loan_purpose": "Purchase",
"loan_amount": 100000
}
}
]
}