You are here:
Remove a Custom Personalization Interaction
To remove your custom interaction from the personalization modal in Distributed Marketing, delete the registered external integration component.
- In Salesforce, navigate to Developer Console.
- Click Debug.
- Click Open Execute Anonymous Window.
-
Enter this code in the window.
mcdm_15__JourneyApprovalsPlugin__c[] results = [SELECT mcdm_15__Component_Name__c FROM mcdm_15__JourneyApprovalsPlugin__c WHERE mcdm_15__Component_Name__c = 'c:example']; delete results; - Execute the code.
