Skip to main content
Kate Kacalek が「#Journey Builder」で質問

I'm building a dashboard of engagement statistics for Journey Builder sends. We use two different publication lists for our emails and subscribers can opt out of them via the default subscription center. If someone opts out of a publication list, is there any way I can connect that back to the job ID and Journey Builder send where they took that action? 

 

@* Marketing Cloud Engagement * 

3 件の回答
  1. 2024年2月6日 17:27

    Hi@Kate Kacalek

    Yes, if someone opts out of a specific publication list but not from All Subscribers, it will be recorded in the _Unsubscribe data view, and the name of that particular publication list will also be included in the record .

    SELECT

        unsub.AccountID,

        unsub.OYBAccountID,

        unsub.JobID,

        unsub.ListID,

        unsub.BatchID,

        unsub.SubscriberID,

        unsub.SubscriberKey,

        unsub.EventDate,

        unsub.IsUnique,

        unsub.Domain

    FROM

        _Unsubscribe AS unsub

    WHERE

        unsub.ListID = 'YourPublicationListID'

     

    Thanks!

0/9000