Zendesk · Arazzo Workflow

Zendesk Solve Ticket from Search

Version 1.0.0

Search for a ticket, then solve it with a closing public comment.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ChatCRMHelp CenterSellSupportT1TalkTicketingTicketsArazzoWorkflows

Provider

zendesk

Workflows

solve-ticket-from-search
Find a ticket via search and mark it solved with a closing comment.
Searches tickets with the supplied query, and when a match is found updates that ticket to solved with a public comment.
2 steps inputs: closingComment, query outputs: matchedTicketId, solvedTicketId
1
searchTickets
Run the Zendesk search and capture the first matching ticket id.
2
solveTicket
Update the matched ticket to solved with a closing public comment.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Zendesk Solve Ticket from Search
  summary: Search for a ticket, then solve it with a closing public comment.
  description: >-
    A find-then-act resolution pattern for Zendesk Support. The workflow runs a
    free-text search scoped to tickets, branches on whether a result was found,
    and when a ticket is matched it updates that ticket to the solved status with
    a closing public comment. The update request body uses the documented
    {ticket:{...}} envelope and is spelled out inline.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-430.10
  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.10
      capability_name: Customer Inquiry Management
      spec: zendesk-tickets-api-openapi.yml
      confidence: 0.92
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: searchApi
  url: ../openapi/zendesk-search-api-openapi.yml
  type: openapi
- name: ticketsApi
  url: ../openapi/zendesk-tickets-api-openapi.yml
  type: openapi
workflows:
- workflowId: solve-ticket-from-search
  summary: Find a ticket via search and mark it solved with a closing comment.
  description: >-
    Searches tickets with the supplied query, and when a match is found updates
    that ticket to solved with a public comment.
  inputs:
    type: object
    required:
    - query
    - closingComment
    properties:
      query:
        type: string
        description: >-
          The Zendesk search query, e.g. "type:ticket status:open
          subject:refund".
      closingComment:
        type: string
        description: The public comment to add when solving the ticket.
  steps:
  - stepId: searchTickets
    description: Run the Zendesk search and capture the first matching ticket id.
    operationId: ListSearchResults
    parameters:
    - name: query
      in: query
      value: $inputs.query
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      matchedTicketId: $response.body#/results/0/id
    onSuccess:
    - name: resultFound
      type: goto
      stepId: solveTicket
      criteria:
      - context: $response.body
        condition: $.results.length > 0
        type: jsonpath
  - stepId: solveTicket
    description: Update the matched ticket to solved with a closing public comment.
    operationId: UpdateTicket
    parameters:
    - name: ticket_id
      in: path
      value: $steps.searchTickets.outputs.matchedTicketId
    requestBody:
      contentType: application/json
      payload:
        ticket:
          status: solved
          comment:
            body: $inputs.closingComment
            public: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      ticketId: $response.body#/ticket/id
      ticketStatus: $response.body#/ticket/status
  outputs:
    matchedTicketId: $steps.searchTickets.outputs.matchedTicketId
    solvedTicketId: $steps.solveTicket.outputs.ticketId

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/zendesk-solve-ticket-from-search-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.