I am using webhook integration to sync monday.com tasks' update, Unfortunately the baseUrl changed and I need to update the webhooks URL accordingly, Is it possible to do that?
Is it possible to list or delete monday.com webhooks?
193 views Asked by M.Shaltoot At
1
The following GraphQL will list existing webhooks. This is documented on the Monday.com developer board: Webhooks Queries
The following is GraphQL to delete specific webhooks by id. This is documented on the Monday.com developer board: Delete a webhook
You can then create webhooks via GraphSQL shared on the Monday.com developer board: Create a webhook
A great tool is the Monday.com API Playground where you can try all these queries out.
I have not yet found how to update a webhook via GraphQL.