post https://api.cloud.digifi.io/application-decision-processing
How to run a decision or integration for an Application using the DigiFi API.
The Run Application Decision API can be used to run a decision for an application. This strategy could contain data integrations in addition to business rules and decision logic.
The process will use the application's existing data to run the decision strategy. The variables generated during decisioning will automatically save back to the application.
Example Requests
Below please find the JSON body for two example requests:
- Example 1: Running a decision without providing a name for the decision (the name will auto-generate).
- Example 2: Running a decision with a name provided.
{
"applicationId": "63ca97b71da7c1618788eeb8",
"strategyId": "63caa0fec91f8cd21468c9df"
}
{
"applicationId": "63ca97b71da7c1618788eeb8",
"strategyId": "63caa0fec91f8cd21468c9df",
"decisionName": "Decision Name"
}