Hi Everyone,
So I'm trying to reduce a switch in my Inbound Call Flow from 25 to 4 cases. So I was toying with using and OR expression in the Cases.
What I would like to do is this Case 1 Flow.DNIS == "+12345678901" or "+23456789010" or "+34567890123"
So if it sees any of those options in the Flow.DNIS then Case 1 would be True. And then do a similar expression set for Case 2/3/4.
Any thoughts, recommendation? I've tried reading thru the forum and the expression help, but I'm at a loss.
Thanks in advance.
Hi Jonathan,
That expression would work with a slight change
Flow.DNIS == "+12345678901" or Flow.DNIS == "+23456789010" or Flow.DNIS=="+34567890123"
1 Like
This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.