I want to be able to set up a trigger to fire off a zap when a particular status is selected in monday but I can’t seem to find a way to do it. The only way to trigger a zap is if any value is changed in the column not if a particular status is changed. Is there a way to do this>
Also is there a way to get the Monday.com doc to be come over in a zap as well?
Long story short, a webhook is a way for an app to provide other applications with real-time information. It is a callback that “lets your app know” when something happens. In this case, when “Halo” changes to “CREATE”, a webhook will be sent to the URL you provided. You will need to listen to that URL so that you get the payload from the webhook. I have not used this in Zapier but from what I can see, I believe you can choose the option “Catch Hook”:
Which should create a zapier URL for you. And then use that URL as your webhook URL in Monday so that when the trigger occurs, the webhook can be sent to that Zapier URL and that can trigger the action.
As I said I do not count with a premium Zapier account to try this at the moment so I can’t assure this will work as intended, but it looks like it could be what you are looking for.
Please do let me know if this works and if you have any more questions!
Last question and then I will leave you alone. I have now setup the webhook and I can test it which is great but the only issue is that the webhook payload isn’t bringing over a lot of information from the board. How do I choose what information comes over from monday?
The payload you get comes from the event that is triggering the webhook. You can get different information with different events that trigger the webhook. For example, if the webhook is connected to the creation of an item, you will get stuff like the board ID and the item’s ID. If it is connected to the change of a status to something, it will also include things like the text of the status option and it’s color.
If you want to get information that is not in the payload, you could get the payload, find the item ID, and use that to query for the information you want, using our API.