Boomi · Arazzo Workflow

Boomi DataHub Publish a Draft Model

Version 1.0.0

List models in a repository, read a draft model, and publish it if still in draft.

1 workflow 1 source API 1 provider
View Spec View on GitHub AI AgentsAutomationB2BData IntegrationEDIIntegrationManagementMFTPlatformWorkflowsArazzoWorkflows

Provider

boomi

Workflows

datahub-publish-draft-model
Locate a model in a repository, inspect its status, and publish it when it is a draft.
Lists the models in the repository to resolve the first model id, reads that model to inspect its status, and publishes it only when it is still in the DRAFT state.
3 steps inputs: repositoryId outputs: modelId, publishedVersion
1
listModels
List the models defined within the repository and select the first one.
2
readModel
Read the selected model to inspect its current publication status.
3
publishModel
Publish the draft model so it becomes available for domain deployment and data ingestion.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Boomi DataHub Publish a Draft Model
  summary: List models in a repository, read a draft model, and publish it if still in draft.
  description: >-
    Promotes a draft DataHub model to published. The workflow lists the models in
    a repository to locate one, reads that model to inspect its publication
    status, and branches: when the model is still in draft it publishes it, and
    when it is already published it ends. Every step spells out its request inline
    so the publishing flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-610.20
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-610.20
      capability_name: Master Data Management
      spec: boomi-models-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: modelsApi
  url: ../openapi/boomi-models-api-openapi.yml
  type: openapi
workflows:
- workflowId: datahub-publish-draft-model
  summary: Locate a model in a repository, inspect its status, and publish it when it is a draft.
  description: >-
    Lists the models in the repository to resolve the first model id, reads that
    model to inspect its status, and publishes it only when it is still in the
    DRAFT state.
  inputs:
    type: object
    required:
    - repositoryId
    properties:
      repositoryId:
        type: string
        description: The ID of the repository whose model should be published.
  steps:
  - stepId: listModels
    description: >-
      List the models defined within the repository and select the first one.
    operationId: listModels
    parameters:
    - name: repositoryId
      in: path
      value: $inputs.repositoryId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      modelId: $response.body#/models/0/id
  - stepId: readModel
    description: >-
      Read the selected model to inspect its current publication status.
    operationId: getModel
    parameters:
    - name: repositoryId
      in: path
      value: $inputs.repositoryId
    - name: modelId
      in: path
      value: $steps.listModels.outputs.modelId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      modelId: $response.body#/id
      status: $response.body#/status
    onSuccess:
    - name: isDraft
      type: goto
      stepId: publishModel
      criteria:
      - context: $response.body
        condition: $.status == "DRAFT"
        type: jsonpath
    - name: alreadyPublished
      type: end
      criteria:
      - context: $response.body
        condition: $.status == "PUBLISHED"
        type: jsonpath
  - stepId: publishModel
    description: >-
      Publish the draft model so it becomes available for domain deployment and
      data ingestion.
    operationId: publishModel
    parameters:
    - name: repositoryId
      in: path
      value: $inputs.repositoryId
    - name: modelId
      in: path
      value: $steps.readModel.outputs.modelId
    successCriteria:
    - condition: $statusCode == 200
    - condition: $response.body#/status == "PUBLISHED"
    outputs:
      publishedVersion: $response.body#/publishedVersion
      status: $response.body#/status
  outputs:
    modelId: $steps.readModel.outputs.modelId
    publishedVersion: $steps.publishModel.outputs.publishedVersion

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/boomi-datahub-publish-draft-model-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.