action alertersystem_api_monitor_type_code_id_get { label: "Retrieves a MonitorTypeCode resource." description: "Retrieves a MonitorTypeCode resource." provider: alertersystem method: GET path: "/api/monitor-type-code/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The MonitorTypeCode resource is a set of codes that describes the different types of monitors that are available." properties: { codeDescription: { type: "string" } codeDescriptionExpanded: { type: "string" } id: { type: "string" } } } }