Airtable · Arazzo Workflow

Airtable Provision a Webhook

Version 1.0.0

Create a webhook on a base and confirm it was registered.

1 workflow 1 source API 1 provider
View Spec View on GitHub ApplicationCollaborationDataDatabasesLow-CodeProductivitySpreadsheetsArazzoWorkflows

Provider

airtable

Workflows

provision-webhook
Create a webhook on a base and verify it exists.
Creates a webhook subscription on the supplied base using a notification URL and specification, then lists the base's webhooks to confirm the new webhook id is present.
2 steps inputs: baseId, notificationUrl, specification outputs: macSecretBase64, webhookId, webhooks
1
createWebhook
Create a new webhook subscription on the base using the supplied notification URL and specification.
2
listWebhooks
List all webhooks registered on the base and confirm that the newly created webhook id appears in the result.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Provision a Webhook
  summary: Create a webhook on a base and confirm it was registered.
  description: >-
    Provisions a new webhook subscription on an Airtable base and then verifies
    that the subscription was registered by listing the base's webhooks and
    confirming the newly created webhook id appears in the list. Each step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: webhooksApi
  url: ../openapi/airtable-webhooks-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-webhook
  summary: Create a webhook on a base and verify it exists.
  description: >-
    Creates a webhook subscription on the supplied base using a notification URL
    and specification, then lists the base's webhooks to confirm the new webhook
    id is present.
  inputs:
    type: object
    required:
    - baseId
    - notificationUrl
    - specification
    properties:
      baseId:
        type: string
        description: The Airtable base identifier (e.g. appXXXXXXXXXXXXXX).
      notificationUrl:
        type: string
        description: The URL that will receive POST notifications when changes occur.
      specification:
        type: object
        description: The specification defining what changes the webhook monitors.
  steps:
  - stepId: createWebhook
    description: >-
      Create a new webhook subscription on the base using the supplied
      notification URL and specification.
    operationId: createWebhook
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    requestBody:
      contentType: application/json
      payload:
        notificationUrl: $inputs.notificationUrl
        specification: $inputs.specification
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhookId: $response.body#/id
      macSecretBase64: $response.body#/macSecretBase64
      expirationTime: $response.body#/expirationTime
  - stepId: listWebhooks
    description: >-
      List all webhooks registered on the base and confirm that the newly
      created webhook id appears in the result.
    operationId: listWebhooks
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.webhooks[?(@.id == "$steps.createWebhook.outputs.webhookId")]
      type: jsonpath
    outputs:
      webhooks: $response.body#/webhooks
  outputs:
    webhookId: $steps.createWebhook.outputs.webhookId
    macSecretBase64: $steps.createWebhook.outputs.macSecretBase64
    webhooks: $steps.listWebhooks.outputs.webhooks

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/airtable-provision-webhook-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.