action getpostman_all_monitors { label: "All Monitors" description: "The `/monitors` endpoint returns a list of all [monitors](https://monitor.getpostman.com/) that are accessible by you.\n\nThe response contains an array of monitors information containing the `name`, `id`, `owner` and `uid` of each monitor.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/monitors" encoding: json output: { type: "object" properties: { monitors: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } owner: { type: "string" } uid: { type: "string" } } } } } } }