Question
How to enable manual review only for 50% of the transactions (randomly)?
Answer
- Create a Process Skill like in the screenshot below:
- In the IF activity condition settings, define the following line of code and publish the skill:
return Math.random() < 0.5;
This will route 50% of random transactions to Manual Review.
Comments
0 comments
Please sign in to leave a comment.