action edrv_unlockconnector { label: "unlockconnector" description: "Use to request an unlock command for a connector. 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/unlockconnector" encoding: json input: { type: "object" properties: { chargestation: { type: "string" } connector: { type: "string" } } } output: { type: "object" properties: { command: { type: "object" } message: { type: "string" } ok: { type: "boolean" } } } }