Cross-Provider Workflow

Opsgenie Incident to GitHub Issue to Microsoft Teams

Version 1.0.0

Create an Opsgenie incident, open a GitHub issue, then announce in Teams.

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

Providers Orchestrated

opsgenie github microsoft-teams

Workflows

opsgenie-incident-to-issue-to-teams
Create an Opsgenie incident, open a GitHub issue, and announce in Teams.
Creates an Opsgenie incident, opens a GitHub issue to track remediation, and posts a Microsoft Teams message announcing the incident.
3 steps inputs: channelId, incidentDescription, incidentMessage, owner, repo, teamId outputs: issueNumber, issueUrl, messageId, requestId
1
create-incident
$sourceDescriptions.opsgenieIncident.createIncident
Create a new incident in Opsgenie.
2
open-issue
$sourceDescriptions.githubIssues.createAnIssue
Open a GitHub issue to track the incident.
3
announce-teams
$sourceDescriptions.microsoftTeams.sendChannelMessage
Announce the incident in a Microsoft Teams channel.

Source API Descriptions

Arazzo Workflow Specification

dev-opsgenie-incident-to-github-issue-teams.yml Raw ↑
arazzo: 1.0.1
info:
  title: Opsgenie Incident to GitHub Issue to Microsoft Teams
  summary: Create an Opsgenie incident, open a GitHub issue, then announce in Teams.
  description: >-
    An incident-response workflow that creates an Opsgenie incident to drive the
    response process, opens a GitHub issue to track remediation, and announces
    the incident in a Microsoft Teams channel. Demonstrates chaining an
    incident-management provider, a source-control provider, and a collaboration
    provider in a single Arazzo workflow.
  version: 1.0.0
sourceDescriptions:
  - name: opsgenieIncident
    url: https://raw.githubusercontent.com/api-evangelist/opsgenie/refs/heads/main/openapi/opsgenie-incidents-api-openapi.yml
    type: openapi
  - name: githubIssues
    url: https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/openapi/_original/github-repo-issues-api-openapi.yml
    type: openapi
  - name: microsoftTeams
    url: https://raw.githubusercontent.com/api-evangelist/microsoft-teams/refs/heads/main/openapi/microsoft-teams-messages-api-openapi.yml
    type: openapi
workflows:
  - workflowId: opsgenie-incident-to-issue-to-teams
    summary: Create an Opsgenie incident, open a GitHub issue, and announce in Teams.
    description: >-
      Creates an Opsgenie incident, opens a GitHub issue to track remediation,
      and posts a Microsoft Teams message announcing the incident.
    inputs:
      type: object
      properties:
        incidentMessage:
          type: string
        incidentDescription:
          type: string
        owner:
          type: string
        repo:
          type: string
        teamId:
          type: string
        channelId:
          type: string
    steps:
      - stepId: create-incident
        description: Create a new incident in Opsgenie.
        operationId: $sourceDescriptions.opsgenieIncident.createIncident
        requestBody:
          contentType: application/json
          payload:
            message: $inputs.incidentMessage
            description: $inputs.incidentDescription
            priority: P1
        successCriteria:
          - condition: $statusCode == 202
        outputs:
          requestId: $response.body#/requestId
      - stepId: open-issue
        description: Open a GitHub issue to track the incident.
        operationId: $sourceDescriptions.githubIssues.createAnIssue
        requestBody:
          contentType: application/json
          payload:
            title: $inputs.incidentMessage
            body: $inputs.incidentDescription
            labels:
              - incident
              - opsgenie
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          issueNumber: $response.body#/number
          issueUrl: $response.body#/html_url
      - stepId: announce-teams
        description: Announce the incident in a Microsoft Teams channel.
        operationId: $sourceDescriptions.microsoftTeams.sendChannelMessage
        requestBody:
          contentType: application/json
          payload:
            body:
              contentType: html
              content: $steps.open-issue.outputs.issueUrl
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          messageId: $response.body#/id
    outputs:
      requestId: $steps.create-incident.outputs.requestId
      issueNumber: $steps.open-issue.outputs.issueNumber
      issueUrl: $steps.open-issue.outputs.issueUrl
      messageId: $steps.announce-teams.outputs.messageId

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/dev-opsgenie-incident-to-github-issue-teams"
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.