Airtable · Arazzo Workflow

Airtable Teardown a Webhook

Version 1.0.0

Find a webhook on a base and delete it.

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

Provider

airtable

Workflows

teardown-webhook
Find a webhook and delete it.
Resolves a webhook on the base and deletes it so the subscription stops sending notifications.
2 steps inputs: baseId, webhookId outputs: result, webhookId
1
listWebhooks
List the webhooks registered on the base and select the first webhook id to delete.
2
deleteWebhook
Delete the resolved webhook so it no longer sends notifications to the base's notification URL.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Teardown a Webhook
  summary: Find a webhook on a base and delete it.
  description: >-
    Tears down an Airtable webhook subscription. The workflow lists the base's
    webhooks to resolve a webhook id and then deletes that webhook so it no
    longer sends notifications. 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: teardown-webhook
  summary: Find a webhook and delete it.
  description: >-
    Resolves a webhook on the base and deletes it so the subscription stops
    sending notifications.
  inputs:
    type: object
    required:
    - baseId
    properties:
      baseId:
        type: string
        description: The Airtable base identifier (e.g. appXXXXXXXXXXXXXX).
      webhookId:
        type: string
        description: >-
          Optional webhook id to delete. When omitted the first webhook returned
          by the base is used.
  steps:
  - stepId: listWebhooks
    description: >-
      List the webhooks registered on the base and select the first webhook id
      to delete.
    operationId: listWebhooks
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      webhookId: $response.body#/webhooks/0/id
  - stepId: deleteWebhook
    description: >-
      Delete the resolved webhook so it no longer sends notifications to the
      base's notification URL.
    operationId: deleteWebhook
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    - name: webhookId
      in: path
      value: $steps.listWebhooks.outputs.webhookId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      result: $response.body
  outputs:
    webhookId: $steps.listWebhooks.outputs.webhookId
    result: $steps.deleteWebhook.outputs.result

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-teardown-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.