Airtable · Capability

Airtable Enterprise API — Workspaces

Airtable Enterprise API — Workspaces. 4 operations. Lead operation: Airtable Move Workspaces Between Enterprises. Self-contained Naftiko capability covering one Airtable business surface.

Run with Naftiko AirtableWorkspaces

What You Can Do

POST
Moveworkspaces — Airtable Move Workspaces Between Enterprises
/v1/meta/enterpriseaccounts/{enterpriseaccountid}/moveworkspaces
POST
Createworkspace — Airtable Create a Workspace
/v1/meta/workspaces
DELETE
Deleteworkspace — Airtable Delete a Workspace
/v1/meta/workspaces/{workspaceid}
GET
Getworkspacecollaborators — Airtable Get Workspace Collaborators
/v1/meta/workspaces/{workspaceid}/collaborators

MCP Tools

airtable-move-workspaces-between-enterprises

Airtable Move Workspaces Between Enterprises

airtable-create-workspace

Airtable Create a Workspace

airtable-delete-workspace

Airtable Delete a Workspace

idempotent
airtable-get-workspace-collaborators

Airtable Get Workspace Collaborators

read-only idempotent

Capability Spec

enterprise-workspaces.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Airtable Enterprise API — Workspaces
  description: 'Airtable Enterprise API — Workspaces. 4 operations. Lead operation: Airtable Move Workspaces Between Enterprises.
    Self-contained Naftiko capability covering one Airtable business surface.'
  tags:
  - Airtable
  - Workspaces
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AIRTABLE_API_KEY: AIRTABLE_API_KEY
capability:
  consumes:
  - type: http
    namespace: enterprise-workspaces
    baseUri: https://api.airtable.com/v0
    description: Airtable Enterprise API — Workspaces business capability. Self-contained, no shared references.
    resources:
    - name: meta-enterpriseAccounts-enterpriseAccountId-moveWorkspaces
      path: /meta/enterpriseAccounts/{enterpriseAccountId}/moveWorkspaces
      operations:
      - name: moveworkspaces
        method: POST
        description: Airtable Move Workspaces Between Enterprises
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: meta-workspaces
      path: /meta/workspaces
      operations:
      - name: createworkspace
        method: POST
        description: Airtable Create a Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: meta-workspaces-workspaceId
      path: /meta/workspaces/{workspaceId}
      operations:
      - name: deleteworkspace
        method: DELETE
        description: Airtable Delete a Workspace
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: workspaceId
          in: path
          type: string
          description: The unique identifier of the workspace (starts with 'wsp').
          required: true
    - name: meta-workspaces-workspaceId-collaborators
      path: /meta/workspaces/{workspaceId}/collaborators
      operations:
      - name: getworkspacecollaborators
        method: GET
        description: Airtable Get Workspace Collaborators
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: workspaceId
          in: path
          type: string
          description: The unique identifier of the workspace.
          required: true
        - name: include
          in: query
          type: array
          description: Additional information to include in the response.
    authentication:
      type: bearer
      token: '{{env.AIRTABLE_API_KEY}}'
  exposes:
  - type: rest
    namespace: enterprise-workspaces-rest
    port: 8080
    description: REST adapter for Airtable Enterprise API — Workspaces. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/meta/enterpriseaccounts/{enterpriseaccountid}/moveworkspaces
      name: meta-enterpriseaccounts-enterpriseaccountid-moveworkspaces
      description: REST surface for meta-enterpriseAccounts-enterpriseAccountId-moveWorkspaces.
      operations:
      - method: POST
        name: moveworkspaces
        description: Airtable Move Workspaces Between Enterprises
        call: enterprise-workspaces.moveworkspaces
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meta/workspaces
      name: meta-workspaces
      description: REST surface for meta-workspaces.
      operations:
      - method: POST
        name: createworkspace
        description: Airtable Create a Workspace
        call: enterprise-workspaces.createworkspace
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meta/workspaces/{workspaceid}
      name: meta-workspaces-workspaceid
      description: REST surface for meta-workspaces-workspaceId.
      operations:
      - method: DELETE
        name: deleteworkspace
        description: Airtable Delete a Workspace
        call: enterprise-workspaces.deleteworkspace
        with:
          workspaceId: rest.workspaceId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/meta/workspaces/{workspaceid}/collaborators
      name: meta-workspaces-workspaceid-collaborators
      description: REST surface for meta-workspaces-workspaceId-collaborators.
      operations:
      - method: GET
        name: getworkspacecollaborators
        description: Airtable Get Workspace Collaborators
        call: enterprise-workspaces.getworkspacecollaborators
        with:
          workspaceId: rest.workspaceId
          include: rest.include
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: enterprise-workspaces-mcp
    port: 9090
    transport: http
    description: MCP adapter for Airtable Enterprise API — Workspaces. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: airtable-move-workspaces-between-enterprises
      description: Airtable Move Workspaces Between Enterprises
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: enterprise-workspaces.moveworkspaces
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airtable-create-workspace
      description: Airtable Create a Workspace
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: enterprise-workspaces.createworkspace
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: airtable-delete-workspace
      description: Airtable Delete a Workspace
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: enterprise-workspaces.deleteworkspace
      with:
        workspaceId: tools.workspaceId
      outputParameters:
      - type: object
        mapping: $.
    - name: airtable-get-workspace-collaborators
      description: Airtable Get Workspace Collaborators
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: enterprise-workspaces.getworkspacecollaborators
      with:
        workspaceId: tools.workspaceId
        include: tools.include
      outputParameters:
      - type: object
        mapping: $.