I have a Webhook triggered from Salesforce. For some reason it is triggering a scenario twice. I did some digging and found that others have had the same issue and the suggested solution was to use a data store.
I have set up a data store and start by checking if a record exists with a unique key for the record, if it doesn’t exist then I add a new record. The idea being that when the scenario triggers a second time with the same data the data store record will already exist and so my filter will stop the scenario from proceeding further.
My problem is that I cannot seem to set my filter after checking if a record exists in such as way that it stops if exists = True.
I have tried Exists = false but this doesn’t seem to work, yet I can see that the record exists in my data store
What am I doing wrong?