action getpostman_run_amonitor { label: "Run a Monitor" description: "This endpoint will run the monitor instantly and wait for the monitor to run completely. It responds with the run results.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: POST path: "/monitors/{monitor_uid}/run" encoding: json output: { type: "object" properties: { run: { type: "object" properties: { executions: { type: "array" items: { type: "object" properties: { id: { type: "number" } item: { type: "object" properties: { id: { type: "string" } name: { type: "string" } } } request: { type: "object" properties: { body: { type: "object" properties: { contentLength: { type: "number" } mode: { type: "string" } } } headers: { type: "object" properties: { accept: { type: "string" } "accept-encoding": { type: "string" } "content-length": { type: "number" } "content-type": { type: "string" } } } method: { type: "string" } timestamp: { type: "string" } url: { type: "string" } } } response: { type: "object" properties: { body: { type: "object" properties: { contentLength: { type: "number" } } } code: { type: "number" } headers: { type: "object" properties: { connection: { type: "string" } "content-encoding": { type: "string" } "content-type": { type: "string" } date: { type: "string" } "transfer-encoding": { type: "string" } } } responseSize: { type: "number" } responseTime: { type: "number" } } } } } } failures: { type: "array" items: { type: "object" properties: { assertion: { type: "object" properties: { "Status code is 400": { type: "boolean" } } } executionId: { type: "number" } message: { type: "string" } name: { type: "string" } } } } info: { type: "object" properties: { collectionUid: { type: "string" } finishedAt: { type: "string" } jobId: { type: "string" } monitorId: { type: "string" } name: { type: "string" } startedAt: { type: "string" } status: { type: "string" } } } stats: { type: "object" properties: { assertions: { type: "object" properties: { failed: { type: "number" } total: { type: "number" } } } requests: { type: "object" properties: { failed: { type: "number" } total: { type: "number" } } } } } } } } } }