--- title: "Do webhooks fire once per bulk update" url: "https://demo.myforumcat.com/q/12/do-webhooks-fire-once-per-bulk-update" forum: "Demo" question_number: 12 category: "General" tags: ["Mobile"] status: "solved" solved: true votes: 36 replies: 5 views: 1170 asked_at: "2026-05-09T14:30:37.173Z" updated_at: "2026-09-18T23:15:45.766Z" --- # Do webhooks fire once per bulk update Asked by Marcus Lee on 2026-05-09 · 36 votes When we update 200 rows via the API in one call, do we get a single webhook event or 200 separate ones? ## 5 replies ### Reply 1 (marked as the solution) meow (Owner) · 2026-05-09 · 5 votes One event per row today, so a 200-row update sends 200 webhook deliveries. That is noisy for large batches, and a single batched event is on our list, just not shipped yet. ### Reply 2 Marcus Lee · 2026-05-10 · 2 votes We handle this by debouncing on our end: buffer the incoming events for a couple seconds and process them as one batch. ### Reply 3 Rebecca Stone · 2026-05-11 · 1 vote We hit this too, ended up debouncing on our end same as described. ### Reply 4 Tom Whitfield · 2026-05-11 · 1 vote Batched events would be a big improvement for anyone syncing at real volume. ### Reply 5 Elena Marsh (Agent) · 2026-05-12 · 2 votes Still an active request, no committed date, but it has not been forgotten.