Skip to main content

Hey,

We are building an integration similar to Miro → Slack integration.

I’m looking for an option to deliver notification functionality into our integration. I know you can get notified when someone mentioned you in the comments or when someone comments on a thread you follow.

I went through Miro API, but I could not find any webhooks or info related to comments on a board.

 

Is it possible to create such a feature?

 

Thank you!

 

Hi @Ivan Homola,

 

The Miro Web-SDK supports this event:

  • COMMENT_CREATED

It means you can listen to this event and know when a comment is added to a board.

For example:

miro.addListener('COMMENT_CREATED', widget => {
console.log(widget)
})

 

The Miro REST API does not offer any event listener/webhooks for the moment.


Hello,

have you made any progress on the REST API?

Are there any options to receive notifications about comments besides the Web SDK?

I’ve noticed that Slack integration is receiving comment mentions in real time 🤔
 


Hello,

Are there any options to receive notifications about comments besides the Web SDK?


Hi @Dmitry Antonov 

No, unfortunately we do not offer ability to receive notifications about comments yet. 

It’s something we are looking into, and we’ve heard the need from the community around this feature. Thanks for your comment. 


Reply