action smart_me_values_in_past_multiple_get { label: "Gets multiple values of a device. This call needs a smart-me professional licence." provider: smart_me method: GET path: "/api/ValuesInPastMultiple/{id}" encoding: json input: { type: "object" properties: { endDate: { type: "string" format: "date-time" } id: { type: "string" } interval: { type: "integer" format: "int32" } startDate: { type: "string" format: "date-time" } } required: ["endDate", "id", "interval", "startDate"] additionalProperties: false } output: { type: "array" items: { 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" } } } } } } } }