how to track conversions from users who were previously taking shorter trips and now (hopefully) start taking longer trips after your campaign:
Share
🧠 Assumptions
You have:
- Identified users with a drop in trip length (e.g., through CJA or a segment in AEP).
- Run a personalized journey or campaign through AJO to encourage longer trips.
- Defined a "longer trip" (e.g., trips > 3 days, trips > 100 miles, etc.).
🧩 Step-by-Step Process
🔶 In AEP (Adobe Experience Platform)
-
Create Conversion Event Schema:
- In your Experience Event schema, ensure you have a field that captures trip details, such as:
-
trip_type
(short, long) -
trip_length_days
ortrip_distance_km
-
- These should be marked as identity-linked with your primary identity (e.g., email, ECID).
- In your Experience Event schema, ensure you have a field that captures trip details, such as:
-
Segment Creation:
- Create a "Post-Campaign Converted" segment, e.g.:
event.timestamp > campaign_launch_date AND trip_type == 'long'
- AND user previously in the "short trip" segment.
- Create a "Post-Campaign Converted" segment, e.g.:
-
Attribute Enrichment (Optional):
- Add derived attributes or flags to the profile such as:
was_short_trip_user = true
post_campaign_long_trip = true
- Add derived attributes or flags to the profile such as:
🔷 In AJO (Adobe Journey Optimizer)
-
Design the Journey:
- Entry Condition: Users from the “short trip” segment (identified earlier).
- Actions: Email, push notification, SMS, etc.
- Include an event listener (such as
long_trip_booked
) using Experience Events.
-
Event-Based Conversion Tracking:
- Define a conversion event:
- E.g.,
trip_booked
wheretrip_type = 'long'
ortrip_duration > X
.
- E.g.,
- Define a conversion event:
-
Use an Event Node in AJO:
- Add a "Wait for Event" node in the journey for:
trip_type == 'long'
- With a timeout window (e.g., 7 days after the message was sent).
- Add a "Wait for Event" node in the journey for:
-
Mark Converted Users:
- Route them to a different branch in the journey (e.g., “Converted” vs “Did Not Convert”).
🔵 In CJA (Customer Journey Analytics)
-
Create a Dataset with Campaign and Trip Events:
- Combine:
- Campaign Impressions (from AJO or Adobe Campaign)
- Trip Booking Events (long and short)
- User Profiles
- Combine:
-
Create a Segment for Conversion:
- Users who received campaign AND booked a long trip within the campaign window.
-
Build a Funnel or Attribution Panel:
- Funnel steps:
- Step 1: Received campaign
- Step 2: Booked long trip within X days
- Calculate conversion rates.
- Use Attribution panel to analyze which campaign versions worked best.
- Funnel steps:
-
Breakdown by Segment:
- Split data by “previously short trip users” vs. “others” to see lift.
✅ Bonus Tips
- Tag all campaign messages in AJO with consistent metadata like
campaign_id
,variant_id
, etc. - Use Experience Events from mobile apps or web to capture trip details automatically (via Adobe Launch).
- Build a Dashboard in CJA to monitor conversion rates in real-time.