How to make Zapier ignore all messages in a Slack thread?
As the title suggests - how can I ignore any messages in a particular slack thread. I have an integration any message gets posted in a channel a jira service request gets created. But the conversation continue in the message thread and I would like to place a logic wherein zapier can ignore all messages which are being posted in that thread.
I’ve already tried these filters - Which omits creating requests if any of my team members respond to message. But when other users message in the same thread zapier ends up creating multiple jira requests for each of the new message getting posted.
Any help in solving this will be greatly appreciated.
Thanks
Page 1 / 1
Hi @k_kush
Can you please clarify what Zap trigger you are using for Slack?
Perhaps post a screenshot.
Hi @k_kush
Check out this related Zapier Community Topic:
Hello @Troy Tessalone
Thank you for your response. I am using this trigger
Also, I did try the recommendations suggested in this post Filter out threaded replies from Slack?. But then it does not trigger anything when I add Thread TS and Thread TS time in the filter.
Hi @k_kush ,
I haven’t tested this, but according to the Slack documentation parents posts and threads have the same objects. However, you can:
identify parent messages by comparing the thread_ts and ts values. If they are equal, the message is a parent message.
So basically in your filter, check if these 2 objects are equal your Zap can trigger on it (since its a parent). If they are not equal it’s a reply and you should stop the zap.
NOTE: When testing Zap steps manually, both parent and threads messages will have those 2 data points.
But when the Zap is turned ON and tested, only the thread will have those 2 data points.
Give that a try and let us know how it goes.
Hello @ForYourIT@Troy Tessalone
All three of us seemed to have had the 100th monkey effect. I literally added the logic of matching Thread TS with TS in my zap and was waiting to test it when I came to this thread to read the new replies. I have implemented this logic and will let you know my findings.