Channel Transitions
Finds journeys where customers moved between channels a specific number of times.
Usage Notes
- in range is inclusive on both sides; that is, in range(3, 5) means >=3 and <=5.
Optional Components
Component | Example |
---|---|
from keyword | from channel='Outbound' |
to keyword | to channel='Assisted' |
Examples
discover journeys where count of channel transitions > 3
discover journeys where count of channel transitions from channel='Outbound' > 3
discover journeys where count of channel transitions to channel='Physical' > 3
discover journeys where count of channel transitions from channel='Social' to channel='Mobile' > 2
discover journeys where count of channel transitions from channel='Web' to channel='Physical' in range(2, 4)