action mist_get_installer_alarm_templates { label: "getInstallerAlarmTemplates" description: "Get the list of alarm templates" provider: mist method: GET path: "/api/v1/installer/orgs/{org_id}/alarmtemplates" encoding: json output: { type: "array" items: { type: "object" required: ["id", "name"] properties: { id: { type: "string" format: "uuid" } name: { type: "string" } } } } }