Zendesk · Arazzo Workflow

Zendesk Create Ticket and Assign Group

Version 1.0.0

Look up a support group by name, then open a ticket assigned to that group.

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

Provider

zendesk

Workflows

create-ticket-assign-group
Resolve a group by name and open a ticket assigned to it.
Lists groups, finds the one matching the supplied name, and opens a ticket routed to that group.
2 steps inputs: commentBody, groupName, subject outputs: assignedGroupId, ticketId
1
listGroups
List the account's groups so the target group can be resolved.
2
createTicket
Open a ticket assigned to the resolved group.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Zendesk Create Ticket and Assign Group
  summary: Look up a support group by name, then open a ticket assigned to that group.
  description: >-
    A routing pattern for Zendesk Support. The workflow lists the account's
    groups, selects the one whose name matches the supplied value, and when found
    opens a new ticket assigned to that group via the group_id field. The ticket
    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: groupsApi
  url: ../openapi/zendesk-groups-api-openapi.yml
  type: openapi
- name: ticketsApi
  url: ../openapi/zendesk-tickets-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-ticket-assign-group
  summary: Resolve a group by name and open a ticket assigned to it.
  description: >-
    Lists groups, finds the one matching the supplied name, and opens a ticket
    routed to that group.
  inputs:
    type: object
    required:
    - groupName
    - subject
    - commentBody
    properties:
      groupName:
        type: string
        description: The name of the group to route the ticket to.
      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.
  steps:
  - stepId: listGroups
    description: List the account's groups so the target group can be resolved.
    operationId: ListGroups
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groups: $response.body#/groups
    onSuccess:
    - name: groupsLoaded
      type: goto
      stepId: createTicket
      criteria:
      - context: $response.body
        condition: $.groups[?(@.name == '$inputs.groupName')]
        type: jsonpath
  - stepId: createTicket
    description: Open a ticket assigned to the resolved group.
    operationId: CreateTicket
    requestBody:
      contentType: application/json
      payload:
        ticket:
          subject: $inputs.subject
          comment:
            body: $inputs.commentBody
            public: true
          group_id: $steps.listGroups.outputs.groups[0].id
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      ticketId: $response.body#/ticket/id
      assignedGroupId: $response.body#/ticket/group_id
  outputs:
    ticketId: $steps.createTicket.outputs.ticketId
    assignedGroupId: $steps.createTicket.outputs.assignedGroupId

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-create-ticket-assign-group-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.