Hi,
In our system, we want to fetch and update user data based on tags. For that, is there any event we can get when tag/tags are removed or new tags are added while editing the topic?
Kindly give any response. Thank you.
Not sure how tags relate to users but you can use the topics webhooks to be informed whenever a topic is updated.
Can we get any event whenever a tag is added or removed while updating the existing topic?
Strongly suggest you read more about webhooks and try them out
A webhook is a way to notify external services about changes on the internet. It’s easier to setup, manage and develop than a Discourse plugin. Though, it does require you to program a little bit or understand its technical details.
In this howto , I’ll set up webhook to power a Github bot for referencing pull request brought in a forum. We’ll want to see a new comment on Github pull request when a new post has a link to it.
It’s a very simple process:
Publish a new post.
A webhook event happ…