action corrently_easee_sessions { label: "Returns lastSession info for all easee wallboxes (chargers) given user has access to." description: "Refer to easee.cloud API for details.\n" provider: corrently method: GET path: "/alternative/easee/lastSessions" encoding: json input: { type: "object" properties: { password: { type: "string" } username: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { id: { type: "string" description: "Given ID by easee api" } lastSession: { type: "string" description: "lastSession Info as given by easee API" } name: { type: "string" description: "Name set for charger" } } } } }