Harmony · Arazzo Workflow

Harmony — create and triage an IT ticket

Version 1.0.0

Create a service-desk ticket, read it back, triage it, and audit the change.

1 workflow 1 source API 1 provider
View Spec View on GitHub ITSMService DeskTicketingEnterprise Service ManagementAI AgentsIT AutomationHelp DeskIdentityCompanyArazzoWorkflows

Provider

harmony

Workflows

createAndTriageTicket
Create a ticket then set its assignee, priority, and status.
Opens a new IT ticket, confirms it via get-by-id, applies a triage update, and reads the activity log. Uses the public Harmony Service Desk operations.
4 steps inputs: assignee, description, priority, reporter, ticket_type, title outputs: ticket_id
1
createTicket
2
getTicket
3
triageTicket
4
readActivity

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Harmony — create and triage an IT ticket
  version: 1.0.0
  summary: Create a service-desk ticket, read it back, triage it, and audit the change.
sourceDescriptions:
- name: ticketsApi
  url: ../openapi/harmony-tickets-api-openapi.yml
  type: openapi
workflows:
- workflowId: createAndTriageTicket
  summary: Create a ticket then set its assignee, priority, and status.
  description: >-
    Opens a new IT ticket, confirms it via get-by-id, applies a triage update, and reads the
    activity log. Uses the public Harmony Service Desk operations.
  inputs:
    type: object
    properties:
      title:
        type: string
      description:
        type: string
      ticket_type:
        type: string
        enum: [request, incident, question]
      priority:
        type: string
        enum: [low, medium, high, urgent]
      reporter:
        type: string
      assignee:
        type: string
  steps:
  - stepId: createTicket
    operationId: createTicket
    requestBody:
      contentType: application/json
      payload:
        title: $inputs.title
        description: $inputs.description
        ticket_type: $inputs.ticket_type
        priority: $inputs.priority
        reporter: $inputs.reporter
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      ticket_id: $response.body#/id
  - stepId: getTicket
    operationId: getTicketByID
    parameters:
    - name: ticket_id
      in: path
      value: $steps.createTicket.outputs.ticket_id
    successCriteria:
    - condition: $statusCode == 200
  - stepId: triageTicket
    operationId: updateTicket
    parameters:
    - name: ticket_id
      in: path
      value: $steps.createTicket.outputs.ticket_id
    requestBody:
      contentType: application/json
      payload:
        assignee: $inputs.assignee
        status: in_progress
    successCriteria:
    - condition: $statusCode == 200
  - stepId: readActivity
    operationId: getTicketActivity
    parameters:
    - name: ticket_id
      in: path
      value: $steps.createTicket.outputs.ticket_id
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    ticket_id: $steps.createTicket.outputs.ticket_id

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/harmony-create-and-triage-ticket"
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.