Skip to main content

Hi everyone! 👋

I'm working on an integration between Miro and a third-party service for validating user data. I'm using webhooks to send information from a Miro board or app, and while the webhook sends successfully, I'm unsure how to handle the response.

From what I’ve found so far, it seems Miro does not have built-in support to process or react to webhook responses — meaning I might need to build a backend service that receives the webhook, performs the validation, and then updates Miro via its REST API.

Can anyone confirm if this is the correct approach? Or is there a way within Miro (e.g. using apps or SDK) to handle webhook callbacks and update board content or properties automatically?

Thanks in advance for any help! 🙏

Miro does not process webhook responses — it only sends them to your specified endpoint. So you're correct in understanding that:

You must build a backend service to handle the webhook payload, validate the data, and then use Miro’s REST API or SDK to perform updates.


Miro webhooks are outbound notifications only. When an event occurs (e.g. item created, updated, etc.), Miro sends a POST request to a webhook endpoint you’ve registered.


Reply