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?
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!