Bubble · Arazzo Workflow

Bubble Trigger a Workflow Then Log a Thing

Version 1.0.0

Trigger a backend workflow and record its result by creating a record via the Data API.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub No-CodeApplication PlatformDatabaseWorkflow-AutomationPluginsArazzoWorkflows

Provider

bubble

Workflows

trigger-workflow-then-log-thing
Trigger a backend workflow, then log its result as a new record.
Invokes a named backend workflow and writes an audit record capturing the workflow name and returned status into a chosen data type.
2 steps inputs: logTypename, parameters, workflowName outputs: logId, runResponse, runStatus
1
triggerWorkflow
triggerWorkflow
Invoke the named backend workflow and capture its returned status and response payload.
2
logRun
createThing
Create an audit record in the chosen data type capturing the workflow name and the status it returned.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Bubble Trigger a Workflow Then Log a Thing
  summary: Trigger a backend workflow and record its result by creating a record via the Data API.
  description: >-
    Bridges the Bubble Workflow API and the Bubble Data API in the
    workflow-then-write direction. The flow triggers a named backend workflow,
    captures its returned status and response payload, and then writes an audit
    record of that run into a data type using the Data API. This is useful for
    keeping a durable log of external workflow invocations. Every step spells out
    its request inline so the flow can be read and executed without opening the
    underlying OpenAPI descriptions.
  version: 1.0.0
sourceDescriptions:
- name: dataApi
  url: ../openapi/_superseded/bubble-data-api-openapi.yml
  type: openapi
- name: workflowApi
  url: ../openapi/_superseded/bubble-workflow-api-openapi.yml
  type: openapi
workflows:
- workflowId: trigger-workflow-then-log-thing
  summary: Trigger a backend workflow, then log its result as a new record.
  description: >-
    Invokes a named backend workflow and writes an audit record capturing the
    workflow name and returned status into a chosen data type.
  inputs:
    type: object
    required:
    - workflowName
    - logTypename
    properties:
      workflowName:
        type: string
        description: Name of the backend API workflow to trigger (case-sensitive).
      parameters:
        type: object
        description: Parameter map passed to the workflow invocation.
      logTypename:
        type: string
        description: Data type name (lowercase, no spaces) to store the audit record in.
  steps:
  - stepId: triggerWorkflow
    description: >-
      Invoke the named backend workflow and capture its returned status and
      response payload.
    operationId: triggerWorkflow
    parameters:
    - name: workflow_name
      in: path
      value: $inputs.workflowName
    requestBody:
      contentType: application/json
      payload: $inputs.parameters
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      response: $response.body#/response
  - stepId: logRun
    description: >-
      Create an audit record in the chosen data type capturing the workflow name
      and the status it returned.
    operationId: createThing
    parameters:
    - name: typename
      in: path
      value: $inputs.logTypename
    requestBody:
      contentType: application/json
      payload:
        workflow_name: $inputs.workflowName
        run_status: $steps.triggerWorkflow.outputs.status
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      logId: $response.body#/id
  outputs:
    runStatus: $steps.triggerWorkflow.outputs.status
    runResponse: $steps.triggerWorkflow.outputs.response
    logId: $steps.logRun.outputs.logId

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/bubble-trigger-workflow-then-log-thing-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.