action getpostman_single_monitor { label: "Single Monitor" description: "This endpoint fetches you basic information about the monitor using its `uid`.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/monitors/{monitor_uid}" encoding: json output: { type: "object" properties: { monitor: { type: "object" properties: { collectionUid: { type: "string" } distribution: { type: "array" items: { type: "object" } } environmentUid: { type: "string" } id: { type: "string" } lastRun: { type: "object" properties: { finishedAt: { type: "string" } startedAt: { type: "string" } stats: { type: "object" properties: { assertions: { type: "object" properties: { failed: { type: "number" } total: { type: "number" } } } requests: { type: "object" properties: { total: { type: "number" } } } } } status: { type: "string" } } } name: { type: "string" } notifications: { type: "object" properties: { onError: { type: "array" items: { type: "object" properties: { email: { type: "string" } } } } onFailure: { type: "array" items: { type: "object" properties: { email: { type: "string" } } } } } } options: { type: "object" properties: { followRedirects: { type: "boolean" } requestDelay: { type: "number" } requestTimeout: { type: "number" } strictSSL: { type: "boolean" } } } owner: { type: "string" } schedule: { type: "object" properties: { cron: { type: "string" } nextRun: { type: "string" } timezone: { type: "string" } } } uid: { type: "string" } } } } } }