SpringboardThis topic is related to Springboard. | Form Builder | 23.10This feature was updated in 23.10
The result of running the Decision Framework is an object representing all the possible destinations, with one or more of the destinations being active.
Below is an example result where the default "approved"
destination was chosen by default because the "denied"
path's configuration did not return true
.
{
"destinations" : {
"approved": {
"isActive": true,
"reasons": [ "Default destination" ]
},
"denied": {
"isActive": false,
"reasons": []
}
},
"calculatedDate": "2018-01-13T18:25:43.511Z"
}
Here is another example result, where "denied"
is active.
{
"destinations" : {
"approved": {
"isActive": false,
"reasons": []
},
"denied": {
"isActive": true,
"reasons": [ "hardFail" ]
}
},
"calculatedDate": "2018-01-13T18:25:43.511Z"
}
Next, learn about Decision Framework rules logic.