action smart_me_folder_settings_get { label: "Gets the settings of a folder or meter" provider: smart_me method: GET path: "/api/folder/settings/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Container for the folder settings" properties: { Description: { type: "string" description: "The Description of the folder or meter" } Enable: { type: "boolean" description: "Flag if the meter is enabled (folder not supported yet)" } FolderType: { type: "string" description: "The Type of the folder" enum: ["Folder", "Location", "Factory", "House", "Office", "Machine", "VirtualMeter", "ElecticityFolder", "WaterFolder", "HeatFolder", "GasFolder", "TemperatureFolder", "Sun", "Light", "Ice", "Sofa", "Food", "Coffee", "Car", "ChargingStation", "Meter", "User", "Trash", "GridPhotovoltaicPowerSystem"] } Name: { type: "string" description: "The Name of the folder or meter" } ParentFolderId: { type: "string" description: "The parent folder ID of this item" } SerialNumber: { type: "integer" format: "int64" description: "The serial number (meter only)" } UseableForVirtualBillingMeters: { type: "boolean" description: "Flag if the meter is usable for virtual billing meters (e.g. washroom)" } ValueCorrection: { type: "number" format: "double" description: "The value correction on this meter" } ValueCorrectionParentFolder: { type: "number" format: "double" description: "The value correction on all parent folders. but not on the meter itself" } VisualizationName: { type: "string" description: "The name of the visualization of the folder" } } } }