Airbyte · Arazzo Workflow

Airbyte Bootstrap a Workspace

Version 1.0.0

Create a workspace, read it back, create an organizing tag inside it, and confirm the workspace starts empty of connections.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub Data IntegrationETLELTOpen-SourceData PipelineConnectorsDataArazzoWorkflows

Provider

airbyte

Workflows

bootstrap-workspace
Create a workspace, confirm it, add an organizing tag, and list its connections.
Creates a workspace, reads it back, creates a tag in it, and lists its connections.
4 steps inputs: organizationId, tagColor, tagName, workspaceName outputs: connections, tagId, workspaceId
1
createWorkspace
Create the workspace with the supplied name.
2
getWorkspace
Read the workspace back by id to confirm it persisted and resolve its data residency.
3
createTag
Create an organizing tag scoped to the new workspace.
4
listConnections
List the new workspace's connections to confirm it starts with an empty collection.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Airbyte Bootstrap a Workspace
  summary: Create a workspace, read it back, create an organizing tag inside it, and confirm the workspace starts empty of connections.
  description: >-
    A workspace onboarding flow. It creates a workspace, reads it back by id to
    confirm it persisted and resolve its data residency, creates an organizing
    tag scoped to the new workspace, and lists the workspace's connections to
    confirm it starts empty. Every step inlines its request so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: publicConnectionsApi
  url: ../openapi/airbyte-public-connections-api-openapi.yml
  type: openapi
- name: publicTagsApi
  url: ../openapi/airbyte-public-tags-api-openapi.yml
  type: openapi
- name: publicWorkspacesApi
  url: ../openapi/airbyte-public-workspaces-api-openapi.yml
  type: openapi
workflows:
- workflowId: bootstrap-workspace
  summary: Create a workspace, confirm it, add an organizing tag, and list its connections.
  description: >-
    Creates a workspace, reads it back, creates a tag in it, and lists its
    connections.
  inputs:
    type: object
    required:
    - workspaceName
    - tagName
    - tagColor
    properties:
      workspaceName:
        type: string
        description: Name for the new workspace.
      organizationId:
        type: string
        description: Optional UUID of the organization to add the workspace to.
      tagName:
        type: string
        description: Name of the organizing tag to create in the workspace.
      tagColor:
        type: string
        description: Hexadecimal color value for the tag (e.g. FF5733).
  steps:
  - stepId: createWorkspace
    description: Create the workspace with the supplied name.
    operationId: createWorkspace
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.workspaceName
        organizationId: $inputs.organizationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      workspaceId: $response.body#/workspaceId
  - stepId: getWorkspace
    description: >-
      Read the workspace back by id to confirm it persisted and resolve its
      data residency.
    operationId: getWorkspace
    parameters:
    - name: workspaceId
      in: path
      value: $steps.createWorkspace.outputs.workspaceId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      workspaceId: $response.body#/workspaceId
      name: $response.body#/name
      dataResidency: $response.body#/dataResidency
  - stepId: createTag
    description: Create an organizing tag scoped to the new workspace.
    operationId: createTag
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.tagName
        color: $inputs.tagColor
        workspaceId: $steps.createWorkspace.outputs.workspaceId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      tagId: $response.body#/tagId
  - stepId: listConnections
    description: >-
      List the new workspace's connections to confirm it starts with an empty
      collection.
    operationId: listConnections
    parameters:
    - name: workspaceIds
      in: query
      value: $steps.createWorkspace.outputs.workspaceId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      connections: $response.body#/data
  outputs:
    workspaceId: $steps.getWorkspace.outputs.workspaceId
    tagId: $steps.createTag.outputs.tagId
    connections: $steps.listConnections.outputs.connections

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/airbyte-workspace-bootstrap-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.