Amazon Connect · Arazzo Workflow

Amazon Connect Start Outbound Voice Contact and Track

Version 1.0.0

Place an outbound voice call, then describe the contact and tag it with attributes.

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

Provider

amazon-connect

Workflows

start-outbound-contact-and-track
Start an outbound voice contact, describe it, and set attributes.
Places an outbound voice call, reads the resulting contact back, and writes user-defined attributes onto the contact.
3 steps inputs: attributes, contactFlowId, destinationPhoneNumber, instanceId, queueId outputs: channel, contactId
1
startCall
Place the outbound voice call against the specified contact flow and queue.
2
describeContact
Read the contact back to confirm the outbound call was created and capture its channel and queue placement.
3
setAttributes
Write campaign attributes onto the contact so flow logic and reporting can reference them.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Amazon Connect Start Outbound Voice Contact and Track
  summary: Place an outbound voice call, then describe the contact and tag it with attributes.
  description: >-
    Launches an outbound voice contact through a contact flow and then tracks it.
    The workflow starts the outbound call against a queue and contact flow,
    describes the resulting contact to confirm it is active, and writes campaign
    attributes onto the contact so downstream flow logic and reporting can key off
    them. 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: contactsApi
  url: ../openapi/amazon-connect-contacts-api-openapi.yml
  type: openapi
workflows:
- workflowId: start-outbound-contact-and-track
  summary: Start an outbound voice contact, describe it, and set attributes.
  description: >-
    Places an outbound voice call, reads the resulting contact back, and writes
    user-defined attributes onto the contact.
  inputs:
    type: object
    required:
    - instanceId
    - contactFlowId
    - destinationPhoneNumber
    - queueId
    properties:
      instanceId:
        type: string
        description: The identifier of the Amazon Connect instance.
      contactFlowId:
        type: string
        description: The identifier of the contact flow to run for the call.
      destinationPhoneNumber:
        type: string
        description: The phone number of the customer, in E.164 format.
      queueId:
        type: string
        description: The identifier of the queue to associate with the contact.
      attributes:
        type: object
        description: User-defined attributes to attach to the contact.
        additionalProperties:
          type: string
  steps:
  - stepId: startCall
    description: >-
      Place the outbound voice call against the specified contact flow and queue.
    operationId: startOutboundVoiceContact
    requestBody:
      contentType: application/json
      payload:
        InstanceId: $inputs.instanceId
        ContactFlowId: $inputs.contactFlowId
        DestinationPhoneNumber: $inputs.destinationPhoneNumber
        QueueId: $inputs.queueId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      contactId: $response.body#/ContactId
  - stepId: describeContact
    description: >-
      Read the contact back to confirm the outbound call was created and capture
      its channel and queue placement.
    operationId: describeContact
    parameters:
    - name: InstanceId
      in: path
      value: $inputs.instanceId
    - name: ContactId
      in: path
      value: $steps.startCall.outputs.contactId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      contactRecord: $response.body#/Contact
      channel: $response.body#/Contact/Channel
    onSuccess:
    - name: contactReady
      type: goto
      stepId: setAttributes
      criteria:
      - context: $response.body
        condition: $.Contact.Id != null
        type: jsonpath
  - stepId: setAttributes
    description: >-
      Write campaign attributes onto the contact so flow logic and reporting can
      reference them.
    operationId: updateContactAttributes
    parameters:
    - name: InstanceId
      in: path
      value: $inputs.instanceId
    - name: ContactId
      in: path
      value: $steps.startCall.outputs.contactId
    requestBody:
      contentType: application/json
      payload:
        Attributes: $inputs.attributes
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    contactId: $steps.startCall.outputs.contactId
    channel: $steps.describeContact.outputs.channel

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-start-outbound-contact-and-track-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.