Workato · Arazzo Workflow

Workato Start a Recipe and Verify Its Health

Version 1.0.0

Activate a recipe and confirm it is running and healthy.

1 workflow 1 source API 1 provider
View Spec View on GitHub AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflowsArazzoWorkflows

Provider

workato

Workflows

start-recipe-with-health-check
Start a recipe, confirm it is running, and queue a health analysis.
Reads a recipe by ID, starts it, verifies the running state, and queues a new performance analysis whose report can be retrieved later.
4 steps inputs: recipeId outputs: healthAnalysisQueued, recipeName, running
1
getRecipe
Read the recipe to confirm it exists and capture its current running state before attempting to start it.
2
startRecipe
Activate the recipe so it begins processing trigger events.
3
confirmRunning
Re-read the recipe and confirm the running flag is now true after the start request.
4
queueHealthAnalysis
Queue a fresh performance analysis for the now-running recipe so a health report becomes available for review.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Workato Start a Recipe and Verify Its Health
  summary: Activate a recipe and confirm it is running and healthy.
  description: >-
    Brings a recipe online and verifies the outcome. The workflow reads the
    recipe to confirm it exists, starts it, re-reads it to confirm the running
    flag flipped, and queues a fresh health analysis so an operator can review
    the recipe's performance report. Every step spells out its request inline
    so the flow can be read and executed without opening the underlying OpenAPI
    description.
  version: 1.0.0
sourceDescriptions:
- name: recipesApi
  url: ../openapi/workato-recipes-api-openapi.yml
  type: openapi
workflows:
- workflowId: start-recipe-with-health-check
  summary: Start a recipe, confirm it is running, and queue a health analysis.
  description: >-
    Reads a recipe by ID, starts it, verifies the running state, and queues a
    new performance analysis whose report can be retrieved later.
  inputs:
    type: object
    required:
    - recipeId
    properties:
      recipeId:
        type: integer
        description: The unique identifier of the recipe to start.
  steps:
  - stepId: getRecipe
    description: >-
      Read the recipe to confirm it exists and capture its current running
      state before attempting to start it.
    operationId: getRecipe
    parameters:
    - name: id
      in: path
      value: $inputs.recipeId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      recipeName: $response.body#/name
      wasRunning: $response.body#/running
  - stepId: startRecipe
    description: Activate the recipe so it begins processing trigger events.
    operationId: startRecipe
    parameters:
    - name: id
      in: path
      value: $inputs.recipeId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      started: $response.body#/success
  - stepId: confirmRunning
    description: >-
      Re-read the recipe and confirm the running flag is now true after the
      start request.
    operationId: getRecipe
    parameters:
    - name: id
      in: path
      value: $inputs.recipeId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.running == true
      type: jsonpath
    outputs:
      running: $response.body#/running
  - stepId: queueHealthAnalysis
    description: >-
      Queue a fresh performance analysis for the now-running recipe so a
      health report becomes available for review.
    operationId: queueRecipeHealthAnalysis
    parameters:
    - name: recipe_id
      in: path
      value: $inputs.recipeId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      queued: $response.body#/success
  outputs:
    recipeName: $steps.getRecipe.outputs.recipeName
    running: $steps.confirmRunning.outputs.running
    healthAnalysisQueued: $steps.queueHealthAnalysis.outputs.queued

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/workato-start-recipe-with-health-check-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.