Update form
update_formUse to patch form overrides. Pass null on an override to inherit again. Set email.subject or email.intro to override project notification copy for this form only; from_name, footer_mode, and include_meta stay on the project. Email templates support {{project.name}}, {{project.slug}}, {{form.name}}, {{form.slug}}, {{count}} (1-based clean submissions on this form, including the current one), and any submission field such as {{name}} or {{email}}. Use a fallback with {{name | "New submission"}}. Missing fields render empty and never error. Do not pass HTML; Furrow renders one owned layout. Set webhook_url_override to override the project webhook for this form. Do not use this to change Turnstile keys — those live on the project. Checkbox groups, select multiple, and other multi-value HTML fields must use a [] suffix on the name (name="services[]") or only the last checked value is stored. Put services[] on field_contract.name too. JSON/fetch should send a real array without brackets ({ "services": ["a", "b"] }) and must not use Object.fromEntries(formData) — use formData.getAll("services"). Single checkbox, select, or combobox: no brackets. File inputs use multipart POST (name="resume[]" for multiple). Enable uploads on the project first. Downloads are the project inbox at files_url, with the form slug as a folder — never put that URL in a public snippet.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New form display name. | |
| No | Per-form subject and intro overrides for the notification email. | ||
| form_id | Yes | Form id from list_forms, create_form, or bootstrap_site. | |
| field_contract | No | Declared fields (name, type, label, report). Drives get_snippet and the email layout. Null clears it. | |
| webhook_url_override | No | Webhook endpoint for this form only. Null inherits the project webhook. | |
| redirect_url_override | No | Success redirect for this form only. Null inherits default_redirect_url. | |
| notify_emails_override | No | Recipients for this form only. Null inherits the project's notify_emails. | |
| webhook_secret_override | No | HMAC secret for this form's webhook. Null inherits the project secret. | |
| require_turnstile_override | No | Force Turnstile on or off for this form. Null inherits the project setting. |