Cross-Provider Workflow

Claude Draft Reply to Zendesk Request

Version 1.0.0

Draft a support reply with Claude, then file it as a Zendesk request.

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

Providers Orchestrated

claude zendesk

Workflows

draft-and-file
Draft a reply with Claude and file a Zendesk request.
Calls Claude to draft a suggested support reply, captures the draft, and creates a Zendesk request carrying the customer question and the draft.
2 steps inputs: model, question, subject outputs: draft, requestId
1
draft-reply
$sourceDescriptions.claudeApi.createMessage
Ask Claude to draft a suggested support reply.
2
file-request
$sourceDescriptions.zendeskApi.CreateRequest
File a Zendesk request carrying the question and drafted reply.

Source API Descriptions

Arazzo Workflow Specification

ai-claude-draft-to-zendesk-workflow.yml Raw ↑
arazzo: 1.0.1
info:
  title: Claude Draft Reply to Zendesk Request
  summary: Draft a support reply with Claude, then file it as a Zendesk request.
  description: >-
    A cross-provider AI enrichment chain that has Claude draft a suggested reply
    to a customer question and files it as a request in Zendesk for agent review.
    Demonstrates AI-assisted support drafting feeding a ticketing system across
    two providers in one Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: claudeApi
    url: https://raw.githubusercontent.com/api-evangelist/claude/refs/heads/main/openapi/claude-messages-api-openapi.yml
    type: openapi
  - name: zendeskApi
    url: https://raw.githubusercontent.com/api-evangelist/zendesk/refs/heads/main/openapi/zendesk-requests-api-openapi.yml
    type: openapi
workflows:
  - workflowId: draft-and-file
    summary: Draft a reply with Claude and file a Zendesk request.
    description: >-
      Calls Claude to draft a suggested support reply, captures the draft, and
      creates a Zendesk request carrying the customer question and the draft.
    inputs:
      type: object
      properties:
        question:
          type: string
        model:
          type: string
        subject:
          type: string
    steps:
      - stepId: draft-reply
        description: Ask Claude to draft a suggested support reply.
        operationId: $sourceDescriptions.claudeApi.createMessage
        requestBody:
          contentType: application/json
          payload:
            model: $inputs.model
            max_tokens: 400
            messages:
              - role: user
                content: "Draft a concise, helpful support reply to this customer question: $inputs.question"
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          draft: $response.body#/content/0/text
      - stepId: file-request
        description: File a Zendesk request carrying the question and drafted reply.
        operationId: $sourceDescriptions.zendeskApi.CreateRequest
        requestBody:
          contentType: application/json
          payload:
            request:
              subject: $inputs.subject
              comment:
                body: "Customer question: $inputs.question\n\nSuggested reply: $steps.draft-reply.outputs.draft"
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          requestId: $response.body#/request/id
    outputs:
      draft: $steps.draft-reply.outputs.draft
      requestId: $steps.file-request.outputs.requestId

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/ai-claude-draft-to-zendesk-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.