action mist_get_installer_device_profiles_wip { label: "getInstallerDeviceProfiles_WIP_" description: "Get Device Profiles" provider: mist method: GET path: "/api/v1/installer/orgs/{org_id}/deviceprofiles" encoding: json output: { type: "array" items: { type: "object" required: ["id", "name"] properties: { id: { type: "string" format: "uuid" } name: { type: "string" } } } } }