Postman · Arazzo Workflow

Postman Remediate a Detected Secret

Version 1.0.0

Find unresolved secrets, inspect one, locate it, and mark it revoked.

1 workflow 1 source API 1 provider
View Spec View on GitHub AI Agent BuilderAI AgentsAPI CatalogAPI ClientAPI DesignAPI DevelopmentAPI DocumentationAPI GovernanceAPI LifecycleAPI MonitoringAPI NetworkAPI PlatformAPI TestingAudit LogsAutomationCI/CDCollaborationCollectionComplianceDiscoveryEnvironmentsFlowsGraphQLgRPCHTTPInsightsMCPMCP GeneratorMock ServersMockingMonitorsNewmanOpenAPIPlatformPrivate API NetworkPublic API NetworkSecret ScanningSpec HubSpecificationsSSOTestingVaultWebSocketWorkflowsWorkspacesArazzoWorkflows

Provider

postman

Workflows

remediate-detected-secret
Triage and revoke the first unresolved detected secret.
Lists unresolved secrets, takes the first one, reads its details and locations, and resolves it as revoked.
4 steps inputs: limit outputs: locations, resolution, secretId
1
listUnresolvedSecrets
List unresolved detected secrets and take the first one.
2
getSecretDetail
Read the details of the selected secret, including its resolution history.
3
getSecretLocations
Enumerate all locations where the secret was found across Postman entities.
4
resolveSecret
Mark the secret as revoked now that it has been triaged and rotated.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Postman Remediate a Detected Secret
  summary: Find unresolved secrets, inspect one, locate it, and mark it revoked.
  description: >-
    A security remediation pattern over the secret scanner. The workflow lists
    unresolved detected secrets, reads the details of the first one, enumerates
    every location where it was found, and resolves it as revoked. Each step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: secretScannerApi
  url: ../openapi/postman-secret-scanner-api-openapi.yml
  type: openapi
workflows:
- workflowId: remediate-detected-secret
  summary: Triage and revoke the first unresolved detected secret.
  description: >-
    Lists unresolved secrets, takes the first one, reads its details and
    locations, and resolves it as revoked.
  inputs:
    type: object
    properties:
      limit:
        type: integer
        description: Maximum number of unresolved secrets to fetch.
        default: 25
  steps:
  - stepId: listUnresolvedSecrets
    description: >-
      List unresolved detected secrets and take the first one.
    operationId: getDetectedSecrets
    parameters:
    - name: statuses
      in: query
      value: UNRESOLVED
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      secretId: $response.body#/data/0/secretId
      secretType: $response.body#/data/0/secretType
  - stepId: getSecretDetail
    description: >-
      Read the details of the selected secret, including its resolution history.
    operationId: getDetectedSecret
    parameters:
    - name: secretId
      in: path
      value: $steps.listUnresolvedSecrets.outputs.secretId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      workspaceId: $response.body#/data/workspaceId
  - stepId: getSecretLocations
    description: >-
      Enumerate all locations where the secret was found across Postman
      entities.
    operationId: getSecretLocations
    parameters:
    - name: secretId
      in: path
      value: $steps.listUnresolvedSecrets.outputs.secretId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      locations: $response.body#/data
  - stepId: resolveSecret
    description: >-
      Mark the secret as revoked now that it has been triaged and rotated.
    operationId: resolveDetectedSecret
    parameters:
    - name: secretId
      in: path
      value: $steps.listUnresolvedSecrets.outputs.secretId
    requestBody:
      contentType: application/json
      payload:
        resolution: RESOLVED_REVOKED
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      resolution: $response.body#/data/resolution
  outputs:
    secretId: $steps.listUnresolvedSecrets.outputs.secretId
    locations: $steps.getSecretLocations.outputs.locations
    resolution: $steps.resolveSecret.outputs.resolution

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/postman-remediate-detected-secret-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.