action smart_me_meter_values_get { label: "Gets the Values for a Meter at a given Date. \n The first Value found before the given Date is returned." description: "Gets the Values for a Meter at a given Date. The first Value found before the given Date is returned." provider: smart_me method: GET path: "/api/MeterValues/{id}" encoding: json input: { type: "object" properties: { date: { type: "string" format: "date-time" } id: { type: "string" } } required: ["date", "id"] additionalProperties: false } output: { type: "object" description: "Container Class for the Web API. Conatinas the MeterValues in the Past" properties: { CounterReading: { type: "number" format: "double" description: "The Meter Counter Reading (Total Energy used)" } CounterReadingExport: { type: "number" format: "double" description: "The Meter Counter Reading Export" } CounterReadingExportT1: { type: "number" format: "double" description: "The Meter Counter Reading Export Tariff 1" } CounterReadingExportT2: { type: "number" format: "double" description: "The Meter Counter Reading Export Tariff 2" } CounterReadingExportT3: { type: "number" format: "double" description: "The Meter Counter Reading Export Tariff 3" } CounterReadingExportT4: { type: "number" format: "double" description: "The Meter Counter Reading Export Tariff 4" } CounterReadingImport: { type: "number" format: "double" description: "The Meter Counter Reading Import" } CounterReadingImportT1: { type: "number" format: "double" description: "The Meter Counter Reading Import Tariff 1" } CounterReadingImportT2: { type: "number" format: "double" description: "The Meter Counter Reading Import Tariff 2" } CounterReadingImportT3: { type: "number" format: "double" description: "The Meter Counter Reading Import Tariff 3" } CounterReadingImportT4: { type: "number" format: "double" description: "The Meter Counter Reading Import Tariff 4" } CounterReadingT1: { type: "number" format: "double" description: "The Meter Counter Reading Tariff 1" } CounterReadingT2: { type: "number" format: "double" description: "The Meter Counter Reading Tariff 2" } CounterReadingT3: { type: "number" format: "double" description: "The Meter Counter Reading Tariff 3" } CounterReadingT4: { type: "number" format: "double" description: "The Meter Counter Reading Tariff 4" } CounterReadingUnit: { type: "string" description: "The Unit of the Counter Reading" } Date: { type: "string" format: "date-time" description: "The Date of the Values" } Id: { type: "string" description: "The ID of the device" } Serial: { type: "integer" format: "int64" description: "The Serial number" } } } }