Webhook write-back

✏️ Editing & Write-back Updated 20 May 2026 25 views

What is webhook write-back?

Webhook write-back sends an HTTP POST request to a URL you specify every time a row is added, edited, or deleted in your app. This lets you integrate with any external system - CRMs, databases, Zapier, Make, or your own API.

Setting up a webhook

  1. Open your app and click Settings in the sidebar
  2. Go to the Integrations tab
  3. Enter your webhook URL
  4. Choose which events to send: row created, row updated, row deleted
  5. Click Save

Payload format

SheetForge sends a JSON payload with the following structure:

{
  "event": "row.updated",
  "app_id": "abc123",
  "timestamp": "2026-05-03T12:00:00Z",
  "row": { "Name": "Alice", "Status": "Active", ... },
  "previous": { "Status": "Pending" }
}

Plan requirement

Webhook write-back is available on the Pro plan and higher.

Was this article helpful?

Still need help? Our support team is here.

Sign in to submit a ticket