Airtable · Arazzo Workflow

Airtable Manage Share Links

Version 1.0.0

List a base's share links, then enable or disable a specific share.

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

Provider

airtable

Workflows

manage-share-links
List share links for a base and toggle one share's enabled state.
Retrieves the list of share links for a base, then updates a specific share link to the desired enabled or disabled state.
2 steps inputs: baseId, shareId, state outputs: shareId, shares, state
1
listShares
listShares
List all active share links for the base so the target share link can be confirmed before its state is changed.
2
manageShare
manageShare
Update the chosen share link to the desired enabled or disabled state, toggling external access to the base.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Manage Share Links
  summary: List a base's share links, then enable or disable a specific share.
  description: >-
    Enterprise administrators control external access to a base through share
    links. This workflow first lists the active share links for a base, then
    toggles the state of a chosen share link to either enabled or disabled.
    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: sharesApi
  url: ../openapi/_superseded/airtable-shares-api-openapi.yml
  type: openapi
workflows:
- workflowId: manage-share-links
  summary: List share links for a base and toggle one share's enabled state.
  description: >-
    Retrieves the list of share links for a base, then updates a specific
    share link to the desired enabled or disabled state.
  inputs:
    type: object
    required:
    - baseId
    - shareId
    - state
    properties:
      baseId:
        type: string
        description: The base identifier whose share links are managed (starts with 'app').
      shareId:
        type: string
        description: The share link identifier to toggle (starts with 'shr').
      state:
        type: string
        description: The desired state of the share link.
        enum:
        - enabled
        - disabled
  steps:
  - stepId: listShares
    description: >-
      List all active share links for the base so the target share link can be
      confirmed before its state is changed.
    operationId: listShares
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      shares: $response.body#/shares
      firstShareId: $response.body#/shares/0/shareId
  - stepId: manageShare
    description: >-
      Update the chosen share link to the desired enabled or disabled state,
      toggling external access to the base.
    operationId: manageShare
    parameters:
    - name: baseId
      in: path
      value: $inputs.baseId
    - name: shareId
      in: path
      value: $inputs.shareId
    requestBody:
      contentType: application/json
      payload:
        state: $inputs.state
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      shareId: $response.body#/shareId
      state: $response.body#/state
  outputs:
    shares: $steps.listShares.outputs.shares
    shareId: $steps.manageShare.outputs.shareId
    state: $steps.manageShare.outputs.state

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-manage-share-links-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.