action edrv_reserve { label: "reserve" description: "Use to request a reserve 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/reserve" encoding: json input: { type: "object" properties: { chargestation: { type: "string" } connector: { type: "string" } driver: { type: "string" } endDate: { type: "string" } token: { type: "string" } } } output: { type: "object" properties: { command: { type: "object" } message: { type: "string" } ok: { type: "boolean" } } } }