Webhooks
Update a webhook subscription
Partially update a webhook subscription. Only provided fields are modified; omitted fields remain unchanged.
patch/v1/webhooks/{webhook_id}
Path parameters
webhook_idstring required
Request body
Example request
{
"url": "https://api.example.com/webhooks/wp-events",
"name": "Updated deed alerts",
"event_type": "deed.*",
"region": "state:tx"
}Response
Webhook updated successfully
Example response
{
"result": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"url": "https://api.example.com/webhooks/wp-events",
"name": "Austin metro deed alerts",
"event_type": "deed.*",
"region": "county:tx.travis",
"status": "active",
"created_at": "2026-01-15T09:30:00Z",
"updated_at": "2026-02-20T14:45:00Z"
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.