action edrv_remotestart { label: "remotestart" description: "Use to request a remote start command. The request will wait for the charge station to process the command. It will timeout after 60 seconds." provider: edrv method: POST path: "/v1/commands/remotestart" encoding: json input: { type: "object" properties: { chargestation: { type: "string" } connector: { type: "string" } driver: { type: "string" } token: { type: "string" } } } output: { type: "object" properties: { command: { type: "object" } message: { type: "string" } ok: { type: "boolean" } } } }