action mist_get_msp_sle { label: "getMspSle" description: "Get MSP SLEs (all/worst Orgs ...)" provider: mist method: GET path: "/api/v1/msps/{msp_id}/insights/{metric}" encoding: json input: { type: "object" properties: { sle: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["end", "interval", "limit", "results", "start"] properties: { end: { type: "number" } interval: { type: "number" } limit: { type: "number" } results: { type: "array" items: { type: "object" } } start: { type: "number" } } } }