Amazon Connect · Arazzo Workflow

Amazon Connect Publish and Verify Contact Flow

Version 1.0.0

Create a contact flow from flow-language content and read it back to verify it published.

1 workflow 1 source API 1 provider
View Spec View on GitHub ChatContact CenterCustomer ServiceVoiceArtificial IntelligenceOmnichannelArazzoWorkflows

Provider

amazon-connect

Workflows

publish-contact-flow
Create a contact flow and verify it published.
Creates a contact flow from flow-language content and reads it back to confirm the stored definition.
2 steps inputs: content, description, instanceId, name, type outputs: contactFlowId, state
1
createFlow
Create the contact flow from the supplied flow-language content.
2
verifyFlow
Describe the contact flow to confirm it was published with the expected name.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Connect Publish and Verify Contact Flow
  summary: Create a contact flow from flow-language content and read it back to verify it published.
  description: >-
    Publishes a new contact flow into an Amazon Connect instance and verifies the
    result. The workflow creates the contact flow from its Amazon Connect Flow
    language content, then describes the flow to confirm it was stored with the
    expected name and active state. 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: contactFlowsApi
  url: ../openapi/amazon-connect-contact-flows-api-openapi.yml
  type: openapi
workflows:
- workflowId: publish-contact-flow
  summary: Create a contact flow and verify it published.
  description: >-
    Creates a contact flow from flow-language content and reads it back to
    confirm the stored definition.
  inputs:
    type: object
    required:
    - instanceId
    - name
    - type
    - content
    properties:
      instanceId:
        type: string
        description: The identifier of the Amazon Connect instance.
      name:
        type: string
        description: The name of the contact flow.
      type:
        type: string
        description: The type of contact flow (e.g. CONTACT_FLOW).
      description:
        type: string
        description: A description for the contact flow.
      content:
        type: string
        description: The Amazon Connect Flow language JSON content, as a string.
  steps:
  - stepId: createFlow
    description: >-
      Create the contact flow from the supplied flow-language content.
    operationId: createContactFlow
    parameters:
    - name: InstanceId
      in: path
      value: $inputs.instanceId
    requestBody:
      contentType: application/json
      payload:
        Name: $inputs.name
        Type: $inputs.type
        Description: $inputs.description
        Content: $inputs.content
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      contactFlowId: $response.body#/ContactFlowId
      contactFlowArn: $response.body#/ContactFlowArn
  - stepId: verifyFlow
    description: >-
      Describe the contact flow to confirm it was published with the expected
      name.
    operationId: describeContactFlow
    parameters:
    - name: InstanceId
      in: path
      value: $inputs.instanceId
    - name: ContactFlowId
      in: path
      value: $steps.createFlow.outputs.contactFlowId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.ContactFlow.Name == $inputs.name
      type: jsonpath
    outputs:
      contactFlow: $response.body#/ContactFlow
      state: $response.body#/ContactFlow/State
  outputs:
    contactFlowId: $steps.createFlow.outputs.contactFlowId
    state: $steps.verifyFlow.outputs.state

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/amazon-connect-publish-contact-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.