RE: Combined Journey Dashboard
Hi Lori,
Could you tell me where we could find the linked journey when viewing insights of a marketing email or webpage?
In a marketing email form, I know that we can find them when stopping a marketing email:
Also, in marketing page form, the related journeys can be found when stopping the page.
If above would be what you need:
Those data are fetched by an action called msdyncrm_EntityDependenciesRetrieve, currently we are only able to get these data programmatically, then visualize them by ourselves.
Following parameters are required to call the action:
EntityId: the id of main entity, it could be a customer journey, a webpage or a marketing email.
TargetEntityTypeFilter: the related entity name, if the property equals to msdyncrm_marketingemail, then it means retrieving all related marketing emails.
In a word, you need to create a custom dashboard and insert a web resource to achieve your requirement.
Here is a hardcoded sample that only queries a specific customer journey(09-01 Separate entities) record and its result:
Title
Related entities viewer
Customer journey name: 09-01 Separate entities
Related marketing pages
Related marketing emails
You can replace the id variable of my sample code with any of one your own customer journey id to test.
Regards,
Clofly