Zendesk · Arazzo Workflow

Zendesk Tag and Prioritize New Ticket

Version 1.0.0

Open a ticket, set tags on it, then raise its priority and status.

1 workflow 1 source API 1 provider
View Spec View on GitHub ChatCRMHelp CenterSellSupportT1TalkTicketingTicketsArazzoWorkflows

Provider

zendesk

Workflows

tag-and-prioritize-ticket
Create a ticket, tag it, then set its priority.
Opens a ticket, applies a set of tags via the tags endpoint, and then raises the ticket priority.
3 steps inputs: commentBody, priority, subject, tags outputs: ticketId, ticketPriority
1
createTicket
Open the new ticket.
2
setTags
Set the supplied tags on the ticket via the tags endpoint.
3
prioritize
Raise the ticket priority and set it to open.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Zendesk Tag and Prioritize New Ticket
  summary: Open a ticket, set tags on it, then raise its priority and status.
  description: >-
    A three-step intake-and-classify chain for Zendesk Support. The workflow
    opens a new ticket, sets a list of tags on it through the dedicated ticket
    tags endpoint, and then updates the ticket to raise priority and open it. The
    create and update bodies use the documented {ticket:{...}} envelope and the
    tags body uses the documented {tags:[...]} shape, all 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: ticketsApi
  url: ../openapi/zendesk-tickets-api-openapi.yml
  type: openapi
workflows:
- workflowId: tag-and-prioritize-ticket
  summary: Create a ticket, tag it, then set its priority.
  description: >-
    Opens a ticket, applies a set of tags via the tags endpoint, and then raises
    the ticket priority.
  inputs:
    type: object
    required:
    - subject
    - commentBody
    - tags
    - priority
    properties:
      subject:
        type: string
        description: The subject line of the new ticket.
      commentBody:
        type: string
        description: The body of the first public comment on the ticket.
      tags:
        type: array
        description: The list of tags to set on the ticket.
        items:
          type: string
      priority:
        type: string
        description: The priority to set (urgent, high, normal, low).
  steps:
  - stepId: createTicket
    description: Open the new ticket.
    operationId: CreateTicket
    requestBody:
      contentType: application/json
      payload:
        ticket:
          subject: $inputs.subject
          comment:
            body: $inputs.commentBody
            public: true
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      ticketId: $response.body#/ticket/id
  - stepId: setTags
    description: Set the supplied tags on the ticket via the tags endpoint.
    operationId: SetTagsTicket
    parameters:
    - name: ticket_id
      in: path
      value: $steps.createTicket.outputs.ticketId
    requestBody:
      contentType: application/json
      payload:
        tags: $inputs.tags
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      tags: $response.body#/tags
  - stepId: prioritize
    description: Raise the ticket priority and set it to open.
    operationId: UpdateTicket
    parameters:
    - name: ticket_id
      in: path
      value: $steps.createTicket.outputs.ticketId
    requestBody:
      contentType: application/json
      payload:
        ticket:
          priority: $inputs.priority
          status: open
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      ticketId: $response.body#/ticket/id
      ticketPriority: $response.body#/ticket/priority
  outputs:
    ticketId: $steps.createTicket.outputs.ticketId
    ticketPriority: $steps.prioritize.outputs.ticketPriority

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-tag-and-prioritize-ticket-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.