action smart_me_meter_folder_information_get { label: "Beta: Gets the General Information for a Meter or a Folder" description: "Beta: Gets the General Information for a Meter or a Folder" provider: smart_me method: GET path: "/api/MeterFolderInformation/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Container Class for the Web API" properties: { CommunicationModuleFirmwareVersion: { type: "integer" format: "int32" description: "The Version of the Communication Module (if exists)" } CommunicationModuleHardwareVersion: { type: "integer" format: "int32" description: "The Version of the Communication Module (if exists)" } FirmwareVersion: { type: "integer" format: "int32" description: "The Firmware Version of a Meter" } HardwareVersion: { type: "integer" format: "int32" description: "The Hardware Version of a Meter." } InputInformations: { type: "array" description: "Informations about the available Inputs" items: { type: "object" description: "Informations about the Inputs of a Meter or Folder" properties: { Name: { type: "string" description: "The Name of the Input" } Number: { type: "integer" format: "int32" description: "The Number of this Input. Use this as ID to switch it on or off." } } } } IsFolder: { type: "boolean" description: "Flag if it's a Folder or a Meter" } Name: { type: "string" description: "Name of the Meter or Folder" } OutputInformations: { type: "array" description: "Informations about the available Outputs" items: { type: "object" description: "Informations about the Outputs of a Meter or Folder" properties: { ActionType: { type: "string" description: "The type of the Output" enum: ["OnOffAction", "AnalogAction"] } Name: { type: "string" description: "The Name of the Output" } Number: { type: "integer" format: "int32" description: "The Number of this Output. Use this as ID to switch it on or off." } ObisCode: { type: "string" description: "The Obis Code for this Output" } } } } } } }