action alertersystem_api_monitor_status_code_id_get { label: "Retrieves a MonitorStatusCode resource." description: "Retrieves a MonitorStatusCode resource." provider: alertersystem method: GET path: "/api/monitor-status-code/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The MonitorStatusCode resource is a set of codes that describes the possible statuses of a monitor." properties: { codeDescription: { type: "string" } id: { type: "string" } } } }