action smart_me_values_get { label: "Gets all (last) values of a device" provider: smart_me method: GET path: "/api/Values/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "API Container for a Meter Value" properties: { Date: { type: "string" format: "date-time" description: "The Date of the Value" } DeviceId: { type: "string" description: "The ID of the device" } Values: { type: "array" description: "All values" items: { type: "object" description: "API Container for a (Device) Value" properties: { Obis: { type: "string" description: "The Obis code of this value. \n A description you can find here: \n http://wiki.smart-me.com/index.php/Obis_codes" } Value: { type: "number" format: "double" description: "The Value" } } } } } } }