Cross-Provider Workflow

Zendesk Request to Twilio Identity Verification

Version 1.0.0

Submit a Zendesk end-user request, then start a Twilio verification.

1 workflow 2 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

zendesk twilio

Workflows

request-to-verify
Create a Zendesk request, then begin a Twilio verification.
Creates a Zendesk end-user request and starts a Twilio Verify challenge to confirm the requester's phone number before agent triage.
2 steps inputs: description, serviceSid, subject, toNumber outputs: requestId, verificationStatus
1
create-request
$sourceDescriptions.zendeskRequests.CreateRequest
Create a Zendesk end-user request.
2
start-verification
$sourceDescriptions.twilioVerify.CreateVerification
Start a Twilio Verify challenge for the requester.

Source API Descriptions

Arazzo Workflow Specification

itsm-zendesk-request-to-twilio-verify.yml Raw ↑
arazzo: 1.0.1
info:
  title: Zendesk Request to Twilio Identity Verification
  summary: Submit a Zendesk end-user request, then start a Twilio verification.
  description: >-
    A cross-provider ITSM workflow that captures an end-user help request in
    Zendesk and starts a Twilio Verify identity verification challenge so the
    requester's contact channel can be confirmed before an agent proceeds.
    Demonstrates orchestrating a support desk with a verification provider in a
    single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: zendeskRequests
    url: https://raw.githubusercontent.com/api-evangelist/zendesk/refs/heads/main/openapi/zendesk-requests-api-openapi.yml
    type: openapi
  - name: twilioVerify
    url: https://raw.githubusercontent.com/api-evangelist/twilio/refs/heads/main/openapi/twilio-services-api-openapi.yml
    type: openapi
workflows:
  - workflowId: request-to-verify
    summary: Create a Zendesk request, then begin a Twilio verification.
    description: >-
      Creates a Zendesk end-user request and starts a Twilio Verify challenge to
      confirm the requester's phone number before agent triage.
    inputs:
      type: object
      properties:
        subject:
          type: string
        description:
          type: string
        serviceSid:
          type: string
        toNumber:
          type: string
    steps:
      - stepId: create-request
        description: Create a Zendesk end-user request.
        operationId: $sourceDescriptions.zendeskRequests.CreateRequest
        requestBody:
          contentType: application/json
          payload:
            request:
              subject: $inputs.subject
              comment:
                body: $inputs.description
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          requestId: $response.body#/request/id
      - stepId: start-verification
        description: Start a Twilio Verify challenge for the requester.
        operationId: $sourceDescriptions.twilioVerify.CreateVerification
        requestBody:
          contentType: application/x-www-form-urlencoded
          payload:
            ServiceSid: $inputs.serviceSid
            To: $inputs.toNumber
            Channel: sms
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          verificationSid: $response.body#/sid
          verificationStatus: $response.body#/status
    outputs:
      requestId: $steps.create-request.outputs.requestId
      verificationStatus: $steps.start-verification.outputs.verificationStatus

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/itsm-zendesk-request-to-twilio-verify"
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.