action smart_me_pico_charging_history_get { label: "Gets the last charging history for a pico station" provider: smart_me method: GET path: "/api/pico/history/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "Api container for the charging station history" properties: { Duration: { type: "integer" format: "int32" description: "The duration in seconds" } EnergyUsed: { type: "number" format: "double" description: "The energy used (in kWh)" } StartTime: { type: "string" format: "date-time" description: "The starttime of the charging (in UTC)" } } } } }