Airtable · Arazzo Workflow

Airtable Provision a Workspace

Version 1.0.0

Create a new enterprise workspace and read back its collaborators.

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

Provider

airtable

Workflows

provision-workspace
Create an enterprise workspace and read its collaborators.
Creates a new workspace with the supplied name and then retrieves the collaborators on the newly created workspace.
2 steps inputs: name outputs: collaborators, workspaceId
1
createWorkspace
createWorkspace
Create a new workspace within the enterprise account using the supplied name.
2
getCollaborators
getWorkspaceCollaborators
Read the collaborators on the newly created workspace to confirm initial access.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airtable Provision a Workspace
  summary: Create a new enterprise workspace and read back its collaborators.
  description: >-
    A workspace provisioning flow for the enterprise account. The workflow
    creates a new workspace by name, captures the resulting workspace id, and
    then reads the workspace collaborators so the caller can confirm initial
    access. Every 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: workspacesApi
  url: ../openapi/_superseded/airtable-workspaces-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-workspace
  summary: Create an enterprise workspace and read its collaborators.
  description: >-
    Creates a new workspace with the supplied name and then retrieves the
    collaborators on the newly created workspace.
  inputs:
    type: object
    required:
    - name
    properties:
      name:
        type: string
        description: The name of the new workspace.
  steps:
  - stepId: createWorkspace
    description: >-
      Create a new workspace within the enterprise account using the supplied
      name.
    operationId: createWorkspace
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      workspaceId: $response.body#/id
      workspaceName: $response.body#/name
  - stepId: getCollaborators
    description: >-
      Read the collaborators on the newly created workspace to confirm initial
      access.
    operationId: getWorkspaceCollaborators
    parameters:
    - name: workspaceId
      in: path
      value: $steps.createWorkspace.outputs.workspaceId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      collaborators: $response.body#/collaborators
      groupCollaborators: $response.body#/groupCollaborators
  outputs:
    workspaceId: $steps.createWorkspace.outputs.workspaceId
    collaborators: $steps.getCollaborators.outputs.collaborators

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