action smart_me_folder_get { label: "Gets the Values for a folder or a meter" description: "Gets the Values for a folder or a meter" provider: smart_me method: GET path: "/api/Folder/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Container class for the folder API" properties: { ElectricityCounterValue: { type: "number" format: "double" description: "The Counter values for electricity (kWh)" } ElectricityPower: { type: "number" format: "double" description: "The Power for electricity (kW)" } GasCounterValue: { type: "number" format: "double" description: "The Counter values for Gas (m3)" } GasFlowRate: { type: "number" format: "double" description: "The Flow Rate for Gas (m3/h)" } HeatCounterValue: { type: "number" format: "double" description: "The Counter values for Heat (kWh)" } HeatPower: { type: "number" format: "double" description: "The Power for Heat (kW)" } WaterCounterValue: { type: "number" format: "double" description: "The Counter values for Water (m3)" } WaterFlowRate: { type: "number" format: "double" description: "The Flow Rate for Water (m3/h)" } } } }