Twilio · Arazzo Workflow

Twilio Create a Call Queue and Confirm It

Version 1.0.0

Create a voice call queue with a size limit, then fetch it back to confirm its configuration.

1 workflow 1 source API 1 provider
View Spec View on GitHub AuthenticationCommunicationsContact CenterEmailIoTMessagingPhoneSMST1VerificationVideoVoiceArazzoWorkflows

Provider

twilio

Workflows

create-and-confirm-queue
Provision a call queue and confirm its settings.
Creates a call queue and fetches it back to confirm the friendly name and maximum size.
2 steps inputs: accountSid, friendlyName, maxSize outputs: currentSize, queueSid
1
createQueue
Create the call queue with the supplied name and size limit.
2
confirmQueue
Fetch the queue back by SID to confirm its configuration.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Twilio Create a Call Queue and Confirm It
  summary: Create a voice call queue with a size limit, then fetch it back to confirm its configuration.
  description: >-
    A call routing setup pattern. The workflow creates a new call queue with a
    friendly name and a maximum size, then fetches the queue resource back by its
    SID to confirm the configuration and read the current size. This is the
    standard chain for provisioning a queue that inbound calls can be enqueued
    into. 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
  x-realizes-capability-ids:
  - BC-430.30
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-430.30
      capability_name: Contact Centre Operations Management
      spec: twilio-queues-api-openapi.yml
      confidence: 0.7
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: queuesApi
  url: ../openapi/twilio-queues-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-and-confirm-queue
  summary: Provision a call queue and confirm its settings.
  description: >-
    Creates a call queue and fetches it back to confirm the friendly name and
    maximum size.
  inputs:
    type: object
    required:
    - accountSid
    - friendlyName
    properties:
      accountSid:
        type: string
        description: The Twilio account SID (starts with AC).
      friendlyName:
        type: string
        description: Descriptive name for the queue.
      maxSize:
        type: integer
        description: Optional maximum number of calls allowed in the queue.
  steps:
  - stepId: createQueue
    description: >-
      Create the call queue with the supplied name and size limit.
    operationId: createQueue
    parameters:
    - name: AccountSid
      in: path
      value: $inputs.accountSid
    requestBody:
      contentType: application/x-www-form-urlencoded
      payload:
        FriendlyName: $inputs.friendlyName
        MaxSize: $inputs.maxSize
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      queueSid: $response.body#/sid
  - stepId: confirmQueue
    description: >-
      Fetch the queue back by SID to confirm its configuration.
    operationId: fetchQueue
    parameters:
    - name: AccountSid
      in: path
      value: $inputs.accountSid
    - name: QueueSid
      in: path
      value: $steps.createQueue.outputs.queueSid
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      friendlyName: $response.body#/friendly_name
      currentSize: $response.body#/current_size
      maxSize: $response.body#/max_size
  outputs:
    queueSid: $steps.createQueue.outputs.queueSid
    currentSize: $steps.confirmQueue.outputs.currentSize

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/twilio-create-and-confirm-queue-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.