Postman · Example Payload

Postman Run Monitor Example

AI Agent BuilderAI AgentsAPI CatalogAPI ClientAPI DesignAPI DevelopmentAPI DocumentationAPI GovernanceAPI LifecycleAPI MonitoringAPI NetworkAPI PlatformAPI TestingAudit LogsAutomationCI/CDCollaborationCollectionsComplianceDiscoveryEnvironmentsFlowsGraphQLgRPCHTTPInsightsMCPMCP GeneratorMock ServersMockingMonitorsNewmanOpenAPIPlatformPrivate API NetworkPublic API NetworkSecret ScanningSpec HubSpecificationsSSOTestingVaultWebSocketWorkflowsWorkspaces

Postman Run Monitor Example is an example object payload from Postman, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.getpostman.com/monitors/12345678-9876abcd-1234-5678-9abc-def012345678/run",
    "headers": {
      "x-api-key": "PMAK-xxxxxxxxxxxxxxxxxxxxxxxxxxxx"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "run": {
        "info": {
          "monitorId": "9876abcd-1234-5678-9abc-def012345678",
          "name": "Customer API Health Monitor",
          "status": "success",
          "startedAt": "2026-05-15T12:00:00.000Z",
          "finishedAt": "2026-05-15T12:00:18.412Z",
          "jobId": "abcd1234-ef56-7890-1234-567890abcdef"
        },
        "stats": {
          "assertions": { "total": 24, "failed": 0 },
          "requests": { "total": 7, "failed": 0 }
        },
        "executions": [
          {
            "request": { "method": "GET", "url": "https://api.example.com/customers" },
            "response": { "code": 200, "responseTime": 142 },
            "assertions": [{ "assertion": "Status code is 200", "skipped": false }]
          }
        ]
      }
    }
  }
}