action getpostman_get_monitor_relations { label: "Get monitor relations" description: "This call fetches all the relations by type which are linked to the specified API version along with their details.\n\nThe response will contain an array with key `{{relationType}}`. Each of the item will consist of all the details related each of the relation.\n\n> Requires API Key as `X-Api-Key` request header or `apikey` URL query parameter." provider: getpostman method: GET path: "/apis/{apiId}/versions/{apiVersionId}/monitor" encoding: json output: { type: "object" properties: { monitor: { type: "array" items: { type: "object" properties: { id: { type: "string" } monitorId: { type: "string" } name: { type: "string" } updatedAt: { type: "string" } } } } } } }