action edrv_updatereservation { label: "updatereservation" description: "Use to request a update an existing reservation. The request will wait for the charge station to process the command. It will timeout after 60 seconds." provider: edrv method: PATCH path: "/v1/reservations/{id}" encoding: json input: { type: "object" properties: { connector: { type: "integer" } driver: { type: "string" } endDate: { type: "string" } evse: { type: "integer" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { message: { type: "string" } ok: { type: "boolean" } result: { type: "object" } } } }