Postman · Arazzo Workflow

Postman Audit Mock Server Call Logs

Version 1.0.0

Read a mock server, review its custom responses, and pull its call logs.

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

audit-mock-call-logs
Inspect a mock server and its served call logs.
Reads a mock server, lists its server responses, and fetches its recent call logs for auditing.
3 steps inputs: limit, mockId outputs: callLogs, mockUrl
1
getMock
Read the mock server's configuration and URL.
2
listServerResponses
List the custom server responses configured on the mock.
3
getCallLogs
Pull the mock server's recent call logs, most recent first, including request and response bodies.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Postman Audit Mock Server Call Logs
  summary: Read a mock server, review its custom responses, and pull its call logs.
  description: >-
    An observability pattern for a running mock server. The workflow reads a
    mock server's configuration, lists the custom server responses configured on
    it, and pulls its recent call logs to see what traffic the mock has served.
    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: mocksApi
  url: ../openapi/postman-mocks-api-openapi.yml
  type: openapi
workflows:
- workflowId: audit-mock-call-logs
  summary: Inspect a mock server and its served call logs.
  description: >-
    Reads a mock server, lists its server responses, and fetches its recent
    call logs for auditing.
  inputs:
    type: object
    required:
    - mockId
    properties:
      mockId:
        type: string
        description: The mock server's unique ID or UID.
      limit:
        type: integer
        description: Maximum number of call logs to return.
        default: 100
  steps:
  - stepId: getMock
    description: >-
      Read the mock server's configuration and URL.
    operationId: getMock
    parameters:
    - name: mockId
      in: path
      value: $inputs.mockId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mockUrl: $response.body#/mock/mockUrl
  - stepId: listServerResponses
    description: >-
      List the custom server responses configured on the mock.
    operationId: getMockServerResponses
    parameters:
    - name: mockId
      in: path
      value: $inputs.mockId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      responses: $response.body
  - stepId: getCallLogs
    description: >-
      Pull the mock server's recent call logs, most recent first, including
      request and response bodies.
    operationId: getMockCallLogs
    parameters:
    - name: mockId
      in: path
      value: $inputs.mockId
    - name: limit
      in: query
      value: $inputs.limit
    - name: include
      in: query
      value: request.body
    - name: sort
      in: query
      value: servedAt
    - name: direction
      in: query
      value: desc
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      callLogs: $response.body#/callLogs
  outputs:
    mockUrl: $steps.getMock.outputs.mockUrl
    callLogs: $steps.getCallLogs.outputs.callLogs

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-mock-call-logs-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.