Webhook write-back
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
- Open your app and click Settings in the sidebar
- Go to the Integrations tab
- Enter your webhook URL
- Choose which events to send: row created, row updated, row deleted
- 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