Hi,
I want to know in the campaign record if is there any possibility to validate whether a flow has been created or not. Based on that I need to show a popup upon completing the task.
Like
1 comments
11:46 Dec 19, 2022
Hi,
It's possible to check if a Campaign has a flow via an ESQ request to a table "CampaignVersion".
You see, if campaign flow is not created the request:
select * from "CampaignVersion" where "CampaignId" = '{your Campaign Id}'
Will not return a value.
Theoretically, you can add esq filter before completing a task to a "CampaignVersion" and see if it returns a value, and show your pop-up based on a result.
Show all comments