Postman · Example Payload

Postman Audit Logs 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 Audit Logs 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": "GET",
    "url": "https://api.getpostman.com/audit/logs?since=2026-05-01T00:00:00Z&until=2026-05-15T00:00:00Z",
    "headers": {
      "x-api-key": "PMAK-xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json",
      "Link": "<https://api.getpostman.com/audit/logs?cursor=eyJpZCI6...&since=2026-05-01T00:00:00Z>; rel=\"next\""
    },
    "body": {
      "trails": [
        {
          "id": "log_01HZX0PQ7R8GW4M9X4QYV3MMG2",
          "timestamp": "2026-05-14T18:23:12Z",
          "action": "user.signin",
          "actor": { "id": 12345678, "username": "kinlane", "name": "Kin Lane" },
          "ip": "203.0.113.42",
          "userAgent": "PostmanRuntime/7.43.0",
          "resource": { "type": "team", "id": "9876543" }
        },
        {
          "id": "log_01HZX0PQ7R8GW4M9X4QYV3MMG3",
          "timestamp": "2026-05-14T19:04:05Z",
          "action": "api.update",
          "actor": { "id": 12345678, "username": "kinlane", "name": "Kin Lane" },
          "resource": { "type": "api", "id": "ab12cd34-ef56-7890-1234-567890abcdef", "name": "Customer API" }
        }
      ]
    }
  }
}