SAP Integration Suite · Arazzo Workflow

SAP Integration Suite Deploy And Verify Flow

Version 1.0.0

Deploy an integration flow, wait for it to start, then verify recent message processing succeeded.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub API ManagementCloud IntegrationEnterprise IntegrationEvent MeshiPaaSSAPSAP BTPArazzoWorkflows

Provider

sap-integration-suite

Workflows

deploy-and-verify-flow
Deploy a flow, wait for STARTED, then check its recent message logs.
Deploys an artifact, polls the runtime until it starts, and inspects the most recent message processing logs for the flow to confirm healthy processing.
3 steps inputs: artifactId, artifactVersion, csrfToken, integrationFlowName outputs: latestMessageStatus, runtimeStatus, taskId
1
deployArtifact
Trigger deployment of the design-time artifact to the runtime using the X-CSRF-Token header for the OData write.
2
pollRuntime
Poll the runtime artifact until it reports STARTED or fails with ERROR.
3
verifyMessages
Read the most recent message processing logs for the deployed flow to confirm messages are completing rather than failing.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SAP Integration Suite Deploy And Verify Flow
  summary: Deploy an integration flow, wait for it to start, then verify recent message processing succeeded.
  description: >-
    A deploy-then-verify loop that closes the gap between deployment and live
    traffic. The workflow deploys a design-time integration artifact to the
    runtime, polls the runtime artifact until it reports STARTED, and then reads
    the most recent message processing logs for that integration flow to confirm
    messages are completing rather than failing. Because the deploy is an OData
    V2 write, the POST carries an X-CSRF-Token header supplied as an input.
    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: integrationFlowsApi
  url: ../openapi/sap-integration-suite-integration-flows-api-openapi.yml
  type: openapi
- name: messageProcessingLogsApi
  url: ../openapi/sap-integration-suite-message-processing-logs-api-openapi.yml
  type: openapi
- name: runtimeArtifactsApi
  url: ../openapi/sap-integration-suite-runtime-artifacts-api-openapi.yml
  type: openapi
workflows:
- workflowId: deploy-and-verify-flow
  summary: Deploy a flow, wait for STARTED, then check its recent message logs.
  description: >-
    Deploys an artifact, polls the runtime until it starts, and inspects the
    most recent message processing logs for the flow to confirm healthy
    processing.
  inputs:
    type: object
    required:
    - artifactId
    - artifactVersion
    - integrationFlowName
    - csrfToken
    properties:
      artifactId:
        type: string
        description: Identifier of the design-time integration flow artifact to deploy.
      artifactVersion:
        type: string
        description: Version of the artifact to deploy.
      integrationFlowName:
        type: string
        description: Integration flow name used to scope the message log verification.
      csrfToken:
        type: string
        description: X-CSRF-Token value fetched ahead of time for the OData write call.
  steps:
  - stepId: deployArtifact
    description: >-
      Trigger deployment of the design-time artifact to the runtime using the
      X-CSRF-Token header for the OData write.
    operationId: deployIntegrationDesigntimeArtifact
    parameters:
    - name: Id
      in: query
      value: $inputs.artifactId
    - name: Version
      in: query
      value: $inputs.artifactVersion
    - name: X-CSRF-Token
      in: header
      value: $inputs.csrfToken
    successCriteria:
    - condition: $statusCode == 202
    outputs:
      taskId: $response.body#/d/TaskId
  - stepId: pollRuntime
    description: Poll the runtime artifact until it reports STARTED or fails with ERROR.
    operationId: getRuntimeArtifact
    parameters:
    - name: Id
      in: path
      value: $inputs.artifactId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      runtimeStatus: $response.body#/d/Status
    onSuccess:
    - name: started
      type: goto
      stepId: verifyMessages
      criteria:
      - context: $response.body
        condition: $.d.Status == "STARTED"
        type: jsonpath
    - name: failed
      type: end
      criteria:
      - context: $response.body
        condition: $.d.Status == "ERROR"
        type: jsonpath
    - name: keepPolling
      type: retry
      stepId: pollRuntime
      retryAfter: 10
      retryLimit: 30
      criteria:
      - context: $response.body
        condition: $.d.Status == "STARTING"
        type: jsonpath
  - stepId: verifyMessages
    description: >-
      Read the most recent message processing logs for the deployed flow to
      confirm messages are completing rather than failing.
    operationId: listMessageProcessingLogs
    parameters:
    - name: $filter
      in: query
      value: "IntegrationFlowName eq '$inputs.integrationFlowName'"
    - name: $orderby
      in: query
      value: "LogStart desc"
    - name: $top
      in: query
      value: 10
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      recentLogs: $response.body#/d/results
      latestStatus: $response.body#/d/results/0/Status
  outputs:
    taskId: $steps.deployArtifact.outputs.taskId
    runtimeStatus: $steps.pollRuntime.outputs.runtimeStatus
    latestMessageStatus: $steps.verifyMessages.outputs.latestStatus

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/sap-integration-suite-deploy-and-verify-flow-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.