Hi, I'm trying to follow up a specific click in email template. I use a reaction node followed by condition node, but in this last, no way to resolve the specific click
using this formule "The label of the collection timeSeriesEvents at position 0 is equal to 'Voglio essere ricontattato'"
can you help me?
Views
Replies
Total Likes
Hi @PietroAm1
reaction will track any clicks in you email and will not pass the details of the click. Instead, you can create an unitary event from configurations section and use this event as listener in your journey.
Thanks,
David
Ok thanks, it's a little bit complicate (first because we do not have write permission, read only), second cause we have to do a lot of similar case s x week (even 15 x week). It's pretty strange that in a Mk automation software in 2025 isn't easy to follow up a specific click inside the flowchart.
@PietroAm1
To follow up a specific click in an Adobe Journey Optimizer (AJO) email journey, you generally need to track the unique "label" or "URL" of the link clicked by the recipient. Your approach is logical: a Reaction node captures the click, and a Condition node evaluates specifics about the click event. However, there are important limitations and a few constraints:
All Links Are Tracked by Default: If tracking is enabled for the email, every link can be monitored. Each link's label (the visible text or the tracking label you assign) is reported back and appears in the event payload
Accessing Clicked Link Data:
timeSeriesEvents
).The label of the collection timeSeriesEvents at position 0 is equal to 'Voglio essere ricontattato'
Do not put logic or personalization expressions directly in the link URLs
Use Journey's "Dry run" and reporting to see the event payload and diagnose which key ("label", "url", or other) is actually populated with your clickable's display text
https://experienceleague.adobe.com/en/docs/journey-optimizer/using/channels/email/design-email/add-c...
now adding to what @DavidKangni highlighted, if you need granular level details use custom event.
Create a Custom (Unitary) Event in Configurations
Configurations > Events
.Update Your Email/Tracking to Emit This Unitary Event
{
"eventType": "email.linkClick",
"linkLabel": "Voglio essere ricontattato",
"linkUrl": "https://example.com/callback"
}
Use Your Custom Event as Journey Listener
linkLabel
) and make precise splits or trigger actions.
Thank you, I'll test it.
question: how about
position 0
and is it necessary? how can I determine the correct position?
Views
Replies
Total Likes
Views
Likes
Replies