Automate Airtable + Google Calendar
Structured records with an API worth automating. The shared clock your workflows can read and write. Put an agent between them and the hand-off stops being manual: it reads, decides, acts, and shows its work.
Document Extractor is a ready-made agent built around Airtable; point its last step at Google Calendar to finish this hand-off.
Automations teams run
Each of these runs with a reasoning step between the two tools, so what reaches Google Calendar is a decision about the Airtable event rather than a transcription of it.
When a record is created in Airtable…
…an agent can create or move events in Google Calendar — after reading the context and deciding it should.
When a field changes in Airtable…
…an agent can add agendas to invites in Google Calendar — after reading the context and deciding it should.
When a view gains a row in Airtable…
…an agent can block focus time in Google Calendar — after reading the context and deciding it should.
When an event starts or ends in Google Calendar…
…an agent can create and update records in Airtable — with the reasoning recorded in the run’s receipt.
When a meeting is created in Google Calendar…
…an agent can query views for reporting in Airtable — with the reasoning recorded in the run’s receipt.
When a day begins in Google Calendar…
…an agent can link records across tables in Airtable — with the reasoning recorded in the run’s receipt.
Copy this Airtable → Google Calendar workflow
Start with a custom-api call to api.airtable.com and the google-calendar-api node. Configure the Airtable source payload, the agent input, and the Google Calendar operation. The sequential template does not implement conditional writes or approval by itself.
This is a schema-checked starting point, not an end-to-end tested automation. Replace every CONFIGURE_ value, choose the operations you intend, connect credentials and map source outputs into later inputs. An edge orders steps; it does not supply a condition, an approval gate or a field mapping. Add and test those controls explicitly before any write. Cloud APIs and model providers may receive data. Keep the workflow inactive until tested with fixtures.
{
"id": "058fbfdc-b20f-4c71-a618-0467cdba6fe2",
"name": "Airtable → Google Calendar",
"nodes": [
{
"id": "c60f8648-5fe1-42f0-a479-ba3223f53ec0",
"text": "Run on a schedule",
"x": 512,
"y": 144,
"isEditing": false,
"type": "trigger-timer",
"icon": "connect",
"category": "trigger",
"isSelected": false,
"parameters": {
"fireOnStart": "No",
"scheduleType": "Interval",
"schedule": "Every 15 Minutes"
},
"description": "Setup template for Timer Trigger. This trigger node fires the workflow at specified intervals or at a specific time. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "331d6fca-e38a-47b7-ac34-822f0a019a1a",
"text": "Review source and draft",
"x": 512,
"y": 336,
"isEditing": false,
"type": "agnt-agent",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"agentId": "CONFIGURE_AGENTID",
"message": "Read the Airtable item. Decide whether it warrants action in Google Calendar, and explain why.\nSource input: CONFIGURE_SOURCE_INPUT. Produce a reviewable draft only; do not take external actions."
},
"description": "Setup template for Agent Chat. Chat with an AI agent from your agent library. Select an agent and send messages to interact with it within your workflow. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
},
{
"id": "fa79d025-26fc-4b84-a4ad-445fb86e253c",
"text": "Configure destination in Google Calendar",
"x": 512,
"y": 528,
"isEditing": false,
"type": "google-calendar-api",
"icon": "connect",
"category": "action",
"isSelected": false,
"parameters": {
"action": "LIST_EVENTS",
"calendarId": "CONFIGURE_CALENDARID",
"timeMin": "CONFIGURE_TIMEMIN",
"timeMax": "CONFIGURE_TIMEMAX",
"searchQuery": "CONFIGURE_SEARCHQUERY",
"maxResults": "CONFIGURE_MAXRESULTS"
},
"description": "Setup template for Google Calendar API. Interact with Google Calendar to manage events, check availability, and create Google Meet meetings. Configure credentials, inputs and output mapping before use.",
"error": null,
"isActive": false,
"output": null,
"outputs": {}
}
],
"edges": [
{
"id": "1c154115-91f4-4591-ab54-6ad634ff569a",
"start": {
"id": "c60f8648-5fe1-42f0-a479-ba3223f53ec0",
"type": "output"
},
"end": {
"id": "331d6fca-e38a-47b7-ac34-822f0a019a1a",
"type": "input"
},
"startX": 800,
"startY": 168,
"endX": 512,
"endY": 360
},
{
"id": "a9be35ff-c36b-41b3-acdd-54f20a62d4f2",
"start": {
"id": "331d6fca-e38a-47b7-ac34-822f0a019a1a",
"type": "output"
},
"end": {
"id": "fa79d025-26fc-4b84-a4ad-445fb86e253c",
"type": "input"
},
"startX": 800,
"startY": 360,
"endX": 512,
"endY": 552
}
],
"zoomLevel": 1,
"canvasOffsetX": 0,
"canvasOffsetY": 0,
"isTinyNodeMode": false
}
Configure Google Calendar API
Interact with Google Calendar to manage events, check availability, and create Google Meet meetings.
- action — The action to perform on Google Calendar Current example:
LIST_EVENTS. - calendarId — Calendar ID (defaults to 'primary') Current example:
CONFIGURE_CALENDARID. - timeMin — Lower bound (ISO 8601). Defaults to now. Current example:
CONFIGURE_TIMEMIN. - timeMax — Upper bound (ISO 8601). Defaults to 7 days from now. Current example:
CONFIGURE_TIMEMAX. - searchQuery — Free-text search across event fields Current example:
CONFIGURE_SEARCHQUERY. - maxResults — Max events to return (default 25) Current example:
CONFIGURE_MAXRESULTS.
Install Document Extractor
Document Extractor is a working agent built around Airtable. Install it, point its last step at Google Calendar, and you have this hand-off without building it from an empty canvas.
Runs on your own machine · See what it does
What building this looks like
- Get AGNT Community Core. Free, local, no sign-up needed to run a workflow.
- Add both connections to the vault — Airtable takes an API key pasted into the vault, Google Calendar takes one OAuth sign-in.
- Configure the nodes above, or start from a marketplace workflow and edit it. The agent in the middle is the part worth spending time on.
- Run it once with an approval gate in place. The receipt tells you what it read, what it concluded, and what it changed in Google Calendar.
Airtable and Google Calendar — common questions
Can I connect Airtable to Google Calendar without writing code?
Yes. Airtable connects with an API key pasted into the vault and Google Calendar with one OAuth sign-in, both from the local credential vault. You then describe the job in plain language — “when a record is created, create or move events” — and the agent handles the rest.
How is this different from a field-mapping Airtable to Google Calendar automation?
A field mapping copies values and breaks on the first record nobody anticipated. The middle step here reads the Airtable item in full and decides — whether it matters, how to summarise it, and what belongs in Google Calendar. Deciding to do nothing is a valid outcome, which no mapping can express.
Does my Airtable and Google Calendar data leave my machine?
Your credentials stay in a vault on your own disk rather than in someone else’s cloud. The only calls made are the ones the workflow needs: Airtable, Google Calendar, and your chosen model provider — which can be a local one.
What does a Airtable and Google Calendar run leave behind?
You get an auditable trail rather than a success flag. It shows the Airtable context the agent worked from, the judgment it made about prep briefings before every meeting, and the exact change applied in Google Calendar, with approvals attached where you required them.