action edrv_cancelreservation { label: "cancelreservation" description: "Use to request a delete an existing reservation. 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/cancelreservation" encoding: json input: { type: "object" properties: { reservation: { type: "string" } } } output: { type: "object" properties: { message: { type: "string" } ok: { type: "boolean" } result: { type: "object" } } } }