Subscription Center

Tara_Rowe
Level 5

Subscription Center

Our subscription center is not working if we use a trigger. We originally had filled out web form xxxx as the trigger but that was not working. However if we batched it using the same filter it would work. Any suggestions. I have played with the filters to any, and all and advanced but still it will not pull in the information.

pastedImage_1.png

2 REPLIES 2
Jim_Thao7
Level 9

Re: Subscription Center

All of this put together looks like a race condition to me.

If a record filled out a form to unsubscribe, it's a bad idea to use filters to query that new data on top of the trigger.  Everything is happening all at once and you're triggering and filtering off of that one event.   Instead, keep it simple.  Look for exactly that one thing, such as the form fill or the data value change (add the new value constraint to help you out if you need it).    Try to stay away from filtering on all of the activities that would happen in succession should a record unsubscribe (unless your doing a batch campaign and looking backwards). 

Josh_Hill13
Level 10 - Champion Alumni

Re: Subscription Center

yeah, this should only trigger on Form Fill and then look for the filters you want. Do not use activity filters here. You want exact values.