cloudflare · Cloudflare Workers Docs
Workers Handle form submissions with Airtable
A step-by-step tutorial for building a Cloudflare Worker that intercepts front-end HTML form submissions and uses the Airtable REST API to persist the data into an Airtable base.
Derived skill
Files assembled from official documentation
Viewing SKILL.md
Workers Handle form submissions with Airtable
A step-by-step tutorial for building a Cloudflare Worker that intercepts front-end HTML form submissions and uses the Airtable REST API to persist the data into an Airtable base.
When To Use
Use when you need to implement a serverless backend to capture web form data and store it in an Airtable spreadsheet via a REST API.
Reference Files
| File | Contains | Use For |
|---|---|---|
SKILL.md | Entry point: scope, routing table, and workflow. | Start here. |
docs/workers-handle-form-submissions-with-airtable-workflow-guide.md | A tutorial guide explaining how to use Cloudflare Workers to capture and persist front-end form submissions into an Airtable spreadsheet. | Questions about a tutorial guide explaining how to use Cloudflare Workers to capture and persist front-end form submissions into an A... |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl.text | An HTML form structure configured to send POST requests to a Cloudflare Worker endpoint for Airtable integration. | Exact payloads, commands, or snippets shown in An HTML form structure configured to send POST requests to a Cloudflare Worker endpoint for Airtable integration. |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-2.text | A text-based guide and command sequence for initializing a Cloudflare Workers project that processes form submissions and sends data to Airtable. | Exact payloads, commands, or snippets shown in A text-based guide and command sequence for initializing a Cloudflare Workers project that processes form submissions... |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-3.text | The shell command used to initialize the Cloudflare Workers project for handling Airtable form submissions. | Exact payloads, commands, or snippets shown in The shell command used to initialize the Cloudflare Workers project for handling Airtable form submissions. |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-4.text | A text-based guide outlining the steps to create a Cloudflare Worker that processes form submissions and sends data to Airtable. | Exact payloads, commands, or snippets shown in A text-based guide outlining the steps to create a Cloudflare Worker that processes form submissions and sends data t... |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-5.text | A text-based guide or walkthrough for setting up a Cloudflare Worker to process form submissions and send data to Airtable. | Exact payloads, commands, or snippets shown in A text-based guide or walkthrough for setting up a Cloudflare Worker to process form submissions and send data to Air... |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-6.text | Shell commands for configuring Airtable access tokens as secrets in a Cloudflare Workers environment using Wrangler. | Exact payloads, commands, or snippets shown in Shell commands for configuring Airtable access tokens as secrets in a Cloudflare Workers environment using Wrangler. |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-7.text | Instructions and commands for configuring the AIRTABLE_ACCESS_TOKEN secret for the airtable-form-handler worker script. | Exact payloads, commands, or snippets shown in Instructions and commands for configuring the AIRTABLEACCESSTOKEN secret for the airtable-form-handler worker script. |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-8.text | A JavaScript worker script that intercepts form submissions and sends the data to an Airtable base. | Exact payloads, commands, or snippets shown in A JavaScript worker script that intercepts form submissions and sends the data to an Airtable base. |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-9.text | A JavaScript function that processes incoming POST requests containing form data and sends the fields to an Airtable base. | Exact payloads, commands, or snippets shown in A JavaScript function that processes incoming POST requests containing form data and sends the fields to an Airtable... |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-10.text | A JavaScript function that uses the Fetch API to send form data to an Airtable base via a Cloudflare Worker. | Exact payloads, commands, or snippets shown in A JavaScript function that uses the Fetch API to send form data to an Airtable base via a Cloudflare Worker. |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-11.text | A wrangler.toml configuration file containing environment variables for Airtable base ID and table name for a Cloudflare Workers project. | Exact payloads, commands, or snippets shown in A wrangler.toml configuration file containing environment variables for Airtable base ID and table name for a Cloudfl... |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-12.text | A wrangler.toml configuration file defining the schema, entry point, and environment variables for a Cloudflare Worker that submits form data to Airtable. | Exact payloads, commands, or snippets shown in A wrangler.toml configuration file defining the schema, entry point, and environment variables for a Cloudflare Worke... |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-13.text | The wrangler deploy command used to deploy the Cloudflare Worker for handling Airtable form submissions. | Exact payloads, commands, or snippets shown in The wrangler deploy command used to deploy the Cloudflare Worker for handling Airtable form submissions. |
examples/workers-handle-form-submissions-with-airtable-cloudflare-workers-airtabl-14.text | An HTML form structure designed to capture user input for submission to a Cloudflare Worker connected to Airtable. | Exact payloads, commands, or snippets shown in An HTML form structure designed to capture user input for submission to a Cloudflare Worker connected to Airtable. |
What This Skill Covers
- In this tutorial, you will use Cloudflare Workers and Airtable ↗ to persist form submissions from a front-end user interface. Airtable is a free-to-use sprea...
- Main sections:
Tags,Before you start,1\. Create a form,2\. Create a Worker project,3\. Configure an Airtable base.
Workflow
- Open the most relevant file under
docs/for the exact documented workflow and wording. - Open
schemas/files for exact structured contracts. - Open
examples/files for concrete requests, commands, snippets, and manifests. - Do not add behavior or configuration that is not present in the attached source files.
Canonical source: https://developers.cloudflare.com/workers/tutorials/handle-form-submissions-with-airtable
