Skip to main content

Is it possible to receive and process webhook responses directly in Miro?

  • April 16, 2025
  • 2 replies
  • 77 views

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! 🙏

2 replies

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.


Forum|alt.badge.img

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.