Palo Alto Networks · Arazzo Workflow

Prisma Cloud Alert Triage and Dismissal

Version 1.0.0

Authenticate to Prisma Cloud, list open alerts, inspect one, then dismiss it with a note.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Cloud SecurityCybersecurityFirewallNetwork SecuritySASESOARThreat IntelligenceXDRArazzoWorkflows

Provider

palo-alto-networks

Workflows

triage-and-dismiss-alert
Triage a Prisma Cloud alert from login through dismissal.
Authenticates with Prisma Cloud, lists alerts of the requested severity over a relative time window, fetches the first alert's details, and dismisses it with a note.
4 steps inputs: dismissalNote, password, severity, timeAmount, timeUnit, username outputs: alertId, alertStatus, policyId
1
authenticate
Authenticate with access-key credentials and capture the JWT for later steps.
2
listAlerts
List open alerts of the requested severity over a relative time window, authorizing with the JWT from the login step.
3
getAlertDetail
Retrieve the full detail of the first alert returned by the list step.
4
dismissAlert
Dismiss the inspected alert with the supplied dismissal note.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Prisma Cloud Alert Triage and Dismissal
  summary: Authenticate to Prisma Cloud, list open alerts, inspect one, then dismiss it with a note.
  description: >-
    A Prisma Cloud CSPM analyst flow. The workflow logs in with access-key
    credentials to obtain a short-lived JWT, lists open security alerts filtered
    by severity, retrieves the full detail of the first alert, and then dismisses
    that alert with a documented reason. The JWT obtained at login is passed
    inline as the Authorization header on each protected step. Every step spells
    out its request inline so the triage flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: alertsApi
  url: ../openapi/palo-alto-networks-alerts-api-openapi.yml
  type: openapi
- name: authenticationApi
  url: ../openapi/palo-alto-networks-authentication-api-openapi.yml
  type: openapi
workflows:
- workflowId: triage-and-dismiss-alert
  summary: Triage a Prisma Cloud alert from login through dismissal.
  description: >-
    Authenticates with Prisma Cloud, lists alerts of the requested severity over
    a relative time window, fetches the first alert's details, and dismisses it
    with a note.
  inputs:
    type: object
    required:
    - username
    - password
    - dismissalNote
    properties:
      username:
        type: string
        description: Prisma Cloud Access Key ID.
      password:
        type: string
        description: Prisma Cloud Secret Key for the access key.
      severity:
        type: string
        description: Alert severity to filter on (critical, high, medium, low, informational).
        default: high
      timeAmount:
        type: integer
        description: Amount of time units for the relative time window.
        default: 24
      timeUnit:
        type: string
        description: Time unit for the relative window (minute, hour, day, week, month, year).
        default: hour
      dismissalNote:
        type: string
        description: Reason recorded when dismissing the alert.
  steps:
  - stepId: authenticate
    description: Authenticate with access-key credentials and capture the JWT for later steps.
    operationId: login
    requestBody:
      contentType: application/json
      payload:
        username: $inputs.username
        password: $inputs.password
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      token: $response.body#/token
  - stepId: listAlerts
    description: >-
      List open alerts of the requested severity over a relative time window,
      authorizing with the JWT from the login step.
    operationId: getAlerts
    parameters:
    - name: Authorization
      in: header
      value: Bearer $steps.authenticate.outputs.token
    - name: timeType
      in: query
      value: relative
    - name: timeAmount
      in: query
      value: $inputs.timeAmount
    - name: timeUnit
      in: query
      value: $inputs.timeUnit
    - name: severity
      in: query
      value: $inputs.severity
    - name: detailed
      in: query
      value: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      alertId: $response.body#/items/0/id
      totalRows: $response.body#/totalRows
  - stepId: getAlertDetail
    description: Retrieve the full detail of the first alert returned by the list step.
    operationId: get-alert
    parameters:
    - name: Authorization
      in: header
      value: Bearer $steps.authenticate.outputs.token
    - name: id
      in: path
      value: $steps.listAlerts.outputs.alertId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      policyId: $response.body#/policy/policyId
  - stepId: dismissAlert
    description: Dismiss the inspected alert with the supplied dismissal note.
    operationId: dismiss-alerts
    parameters:
    - name: Authorization
      in: header
      value: Bearer $steps.authenticate.outputs.token
    requestBody:
      contentType: application/json
      payload:
        alerts:
        - id: $steps.listAlerts.outputs.alertId
        dismissalNote: $inputs.dismissalNote
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    alertId: $steps.listAlerts.outputs.alertId
    alertStatus: $steps.getAlertDetail.outputs.status
    policyId: $steps.getAlertDetail.outputs.policyId

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/palo-alto-networks-prisma-cloud-alert-triage-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.