Journey Name in audience | Community
Skip to main content
Silvio6
Level 5
February 9, 2026
Solved

Journey Name in audience

  • February 9, 2026
  • 2 replies
  • 32 views

Hi, is there any chance to use the Journey Name in an audience?

 

The UC is “profiles who received communication from journeys which contains in their names ‘ABC’ “.

 

Thanks.

    Best answer by SatheeskannaK

    @Silvio6 

    The journey name is not available for use in audience targeting because it is not included in the message feedback event dataset. Furthermore, the ability to change the journey name even after publication makes it an unreliable identifier.

     

    2 replies

    SatheeskannaK
    Community Advisor
    SatheeskannaKCommunity AdvisorAccepted solution
    Community Advisor
    February 9, 2026

    @Silvio6 

    The journey name is not available for use in audience targeting because it is not included in the message feedback event dataset. Furthermore, the ability to change the journey name even after publication makes it an unreliable identifier.

     

    Thanks, Sathees
    Phoenix_09
    Level 1
    February 10, 2026

    The one plausible way to go about this would be using journey version id and audience ID. You can use query in AJO. A select query to extract individual customer/profile id from specific dataset using where clause. It might look something like this:

    select profileid from main_dataset 

    where segmentMembership.ups[  ‘ audienceid   ‘ ].status IN (‘realized’, ‘existing’)

    You can keep adding audience id from the journeys involved - in your case, journey’s with ABC in their names. 

    Though there is one caveat here, AJO queries only give a maximum of 1000 results. So you might need to look for alternative ways. One way is run as CTAS ( which is available on the right side of teh queries ).

    Hope this helps.