JourneysExamples
Reservations
Build a flight check-in reminder journey
Send users a reminder to check into their flight before departure. The journey triggers on ticket purchase, delays until close to the flight date, then sends a notification.

Steps
- Create an
Entrancestep:- Event-based, listening for a
ticket.purchasedevent - Set the
Data Keytoentranceso you can reference the event data in later steps
- Event-based, listening for a
- Add a
Delaystep using theUntil Datetype. Set the value to the flight date from the entrance event data. You can reference it using the journey data key, for examplejourney["entrance"].flight_date. - Create a
Sendstep with an email campaign. You can referencejourney["entrance"]in the email template to include details like flight number, departure time, and destination.