Azure Container Apps · Arazzo Workflow

Azure Container Apps Run Existing Job

Version 1.0.0

Confirm a job is provisioned and manually triggerable, then start an execution.

1 workflow 1 source API 1 provider
View Spec View on GitHub AzureContainersDaprKubernetesMicroservicesServerlessArazzoWorkflows

Provider

azure-container-apps

Workflows

run-existing-job
Verify an existing job is ready and start one execution of it.
Reads the job, confirms its provisioningState is Succeeded, and starts a single execution, returning the execution status.
2 steps inputs: apiVersion, jobName, resourceGroupName, subscriptionId outputs: executionId, executionStatus, jobId
1
getJob
Read the job and confirm it has finished provisioning before starting an execution.
2
startExecution
Start a single execution of the job. The request body is sent empty so the job runs with its own configured template.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Azure Container Apps Run Existing Job
  summary: Confirm a job is provisioned and manually triggerable, then start an execution.
  description: >-
    A safe trigger flow for an already-provisioned job. This workflow reads the
    job to confirm it has reached the Succeeded provisioning state before
    starting work, then starts a single execution. 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: jobsApi
  url: ../openapi/azure-container-apps-jobs-api-openapi.yml
  type: openapi
workflows:
- workflowId: run-existing-job
  summary: Verify an existing job is ready and start one execution of it.
  description: >-
    Reads the job, confirms its provisioningState is Succeeded, and starts a
    single execution, returning the execution status.
  inputs:
    type: object
    required:
    - subscriptionId
    - resourceGroupName
    - jobName
    properties:
      subscriptionId:
        type: string
        description: The Azure subscription ID.
      resourceGroupName:
        type: string
        description: The name of the resource group.
      jobName:
        type: string
        description: The name of the job to start.
      apiVersion:
        type: string
        description: Client API version.
        default: '2023-05-01'
  steps:
  - stepId: getJob
    description: >-
      Read the job and confirm it has finished provisioning before starting an
      execution.
    operationId: Jobs_Get
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: jobName
      in: path
      value: $inputs.jobName
    - name: api-version
      in: query
      value: $inputs.apiVersion
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.properties.provisioningState == "Succeeded"
      type: jsonpath
    outputs:
      jobId: $response.body#/id
      triggerType: $response.body#/properties/configuration/triggerType
  - stepId: startExecution
    description: >-
      Start a single execution of the job. The request body is sent empty so the
      job runs with its own configured template.
    operationId: Jobs_Start
    parameters:
    - name: subscriptionId
      in: path
      value: $inputs.subscriptionId
    - name: resourceGroupName
      in: path
      value: $inputs.resourceGroupName
    - name: jobName
      in: path
      value: $inputs.jobName
    - name: api-version
      in: query
      value: $inputs.apiVersion
    requestBody:
      contentType: application/json
      payload: {}
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      executionId: $response.body#/id
      executionStatus: $response.body#/properties/status
      startTime: $response.body#/properties/startTime
  outputs:
    jobId: $steps.getJob.outputs.jobId
    executionId: $steps.startExecution.outputs.executionId
    executionStatus: $steps.startExecution.outputs.executionStatus

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/azure-container-apps-run-existing-job-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.