Boomi · Arazzo Workflow

Boomi Schedule a Process

Version 1.0.0

Find a process by name, read its current schedule, and update it.

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

Provider

boomi

Workflows

schedule-process
Resolve a process by name, read its schedule, and apply an updated schedule.
Queries for a process by name, reads its current schedule configuration, and updates the schedule to run on the supplied Atom with the supplied schedule parameters.
3 steps inputs: atomId, processName, schedule outputs: processId, scheduleId
1
findProcess
Query for a process whose name matches the supplied value, returning the first match.
2
readSchedule
Read the current schedule configuration for the matched process before changing it.
3
applySchedule
Update the process schedule to run on the supplied Atom with the supplied schedule parameters.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Boomi Schedule a Process
  summary: Find a process by name, read its current schedule, and update it.
  description: >-
    Configures unattended execution for a Boomi process. The workflow resolves a
    process by name, reads its existing schedule configuration, and then writes a
    new schedule that binds the process to a chosen Atom. Every step spells out
    its request inline so the scheduling flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: processesApi
  url: ../openapi/boomi-processes-api-openapi.yml
  type: openapi
workflows:
- workflowId: schedule-process
  summary: Resolve a process by name, read its schedule, and apply an updated schedule.
  description: >-
    Queries for a process by name, reads its current schedule configuration, and
    updates the schedule to run on the supplied Atom with the supplied schedule
    parameters.
  inputs:
    type: object
    required:
    - processName
    - atomId
    - schedule
    properties:
      processName:
        type: string
        description: The display name of the process to schedule.
      atomId:
        type: string
        description: The ID of the Atom the schedule should run on.
      schedule:
        type: object
        description: Scheduling parameters including frequency and timing.
  steps:
  - stepId: findProcess
    description: >-
      Query for a process whose name matches the supplied value, returning the
      first match.
    operationId: queryProcesses
    requestBody:
      contentType: application/json
      payload:
        QueryFilter:
          expression:
            operator: AND
            nestedExpression:
            - property: name
              operator: EQUALS
              argument:
              - $inputs.processName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      matchedProcessId: $response.body#/result/0/id
  - stepId: readSchedule
    description: >-
      Read the current schedule configuration for the matched process before
      changing it.
    operationId: getProcessSchedules
    parameters:
    - name: id
      in: path
      value: $steps.findProcess.outputs.matchedProcessId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      scheduleId: $response.body#/id
  - stepId: applySchedule
    description: >-
      Update the process schedule to run on the supplied Atom with the supplied
      schedule parameters.
    operationId: updateProcessSchedules
    parameters:
    - name: id
      in: path
      value: $steps.findProcess.outputs.matchedProcessId
    requestBody:
      contentType: application/json
      payload:
        atomId: $inputs.atomId
        processId: $steps.findProcess.outputs.matchedProcessId
        schedule: $inputs.schedule
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      scheduleId: $response.body#/id
      atomId: $response.body#/atomId
  outputs:
    processId: $steps.findProcess.outputs.matchedProcessId
    scheduleId: $steps.applySchedule.outputs.scheduleId

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-schedule-process-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.