SAP Integration Suite · Arazzo Workflow

SAP Integration Suite Provision Key Value Map

Version 1.0.0

List existing key-value maps, and create a new one only if it does not already exist.

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

Provider

sap-integration-suite

Workflows

provision-key-value-map
Create a key-value map only when one with the target name does not exist.
Lists key-value maps and, when the target name is absent, creates a new key-value map with its initial key/value pairs.
2 steps inputs: encrypted, keyValuePairs, mapName, scope outputs: createStatus, existingMaps
1
listMaps
List existing key-value maps to detect whether the target map already exists.
2
createMap
Create the key-value map with its initial key/value pairs.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SAP Integration Suite Provision Key Value Map
  summary: List existing key-value maps, and create a new one only if it does not already exist.
  description: >-
    An idempotent configuration-store provisioning loop for API Management. The
    workflow lists the existing key-value maps in the tenant, branches on
    whether a map with the target name already exists, and creates the
    key-value map with its initial key/value pairs only when it is absent. 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: keyValueMapsApi
  url: ../openapi/sap-integration-suite-key-value-maps-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-key-value-map
  summary: Create a key-value map only when one with the target name does not exist.
  description: >-
    Lists key-value maps and, when the target name is absent, creates a new
    key-value map with its initial key/value pairs.
  inputs:
    type: object
    required:
    - mapName
    - keyValuePairs
    properties:
      mapName:
        type: string
        description: Name of the key-value map to provision.
      encrypted:
        type: boolean
        description: Whether the map values should be stored encrypted.
        default: false
      scope:
        type: string
        description: Scope of the key-value map (apiproxy, environment, or organization).
        default: environment
      keyValuePairs:
        type: array
        description: Initial key/value pairs to seed the map with.
        items:
          type: object
          properties:
            key:
              type: string
            value:
              type: string
  steps:
  - stepId: listMaps
    description: List existing key-value maps to detect whether the target map already exists.
    operationId: listKeyValueMaps
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      maps: $response.body#/d/results
  - stepId: createMap
    description: Create the key-value map with its initial key/value pairs.
    operationId: createKeyValueMap
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.mapName
        encrypted: $inputs.encrypted
        scope: $inputs.scope
        keyValuePairs: $inputs.keyValuePairs
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      createStatus: $statusCode
  outputs:
    existingMaps: $steps.listMaps.outputs.maps
    createStatus: $steps.createMap.outputs.createStatus

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-provision-key-value-map-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.