I need to update the title of an item in my app when a user changes it in another view.
I see that there is a method called monday.listen, which takes “event” as an input. This listener gets triggered when a new item is added, or a column value is changed. But it is not fired for other common events like
Updating the title of an item
Removing an item
Is there a plan to add these, or an alternative workaround?
In our case, we have to poll for all the items in a board, and then do a diff with the previous response to see if some item was deleted. Which seems a bit tedious and network intensive. If we have a lot of simultaneous users, we could be hitting our API rate limits easily.
It would be amazing if these two events - title change and item deletion were also a part of the api specification. Hope these could be added in the near future.
What about using webhooks? Would that be a possibility for you?
You could create some webhooks in the board. One with the trigger "When an item is deleted, one with the trigger “When an item’s name changes” and maybe one with the trigger “When an item is archived”.