Postman · Arazzo Workflow

Postman Review the Latest Collection Run

Version 1.0.0

List a collection's run history and pull the latest run's full details.

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

review-latest-collection-run
Fetch the run history then the newest run's detailed results.
Lists collection runs ordered by recency, takes the first (latest) run ID, and fetches that run's detailed assertion and execution results.
2 steps inputs: collectionId, limit outputs: failedAssertions, latestRunId, status
1
listRuns
List the collection's recent run history, most recent first.
2
getRun
Fetch the detailed results for the latest run, including individual request executions and assertions.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Postman Review the Latest Collection Run
  summary: List a collection's run history and pull the latest run's full details.
  description: >-
    A CI/CD-oriented pattern for inspecting collection test results. The
    workflow lists the run history for a collection, selects the most recent
    run, and fetches its detailed execution and assertion results. 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: collectionRunsApi
  url: ../openapi/postman-collection-runs-api-openapi.yml
  type: openapi
workflows:
- workflowId: review-latest-collection-run
  summary: Fetch the run history then the newest run's detailed results.
  description: >-
    Lists collection runs ordered by recency, takes the first (latest) run ID,
    and fetches that run's detailed assertion and execution results.
  inputs:
    type: object
    required:
    - collectionId
    properties:
      collectionId:
        type: string
        description: The collection's unique ID or UID.
      limit:
        type: integer
        description: Maximum number of runs to fetch in the history.
        default: 10
  steps:
  - stepId: listRuns
    description: >-
      List the collection's recent run history, most recent first.
    operationId: getCollectionRuns
    parameters:
    - name: collectionId
      in: path
      value: $inputs.collectionId
    - name: limit
      in: query
      value: $inputs.limit
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      latestRunId: $response.body#/runs/0/id
      latestRunStatus: $response.body#/runs/0/status
  - stepId: getRun
    description: >-
      Fetch the detailed results for the latest run, including individual
      request executions and assertions.
    operationId: getCollectionRun
    parameters:
    - name: collectionId
      in: path
      value: $inputs.collectionId
    - name: runId
      in: path
      value: $steps.listRuns.outputs.latestRunId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/run/status
      duration: $response.body#/run/duration
      failedAssertions: $response.body#/run/stats/assertions/failed
  outputs:
    latestRunId: $steps.listRuns.outputs.latestRunId
    status: $steps.getRun.outputs.status
    failedAssertions: $steps.getRun.outputs.failedAssertions

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-review-collection-run-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.