action enode_disconnect_vendor { label: "Disconnect Vendor" description: "Disconnect a single Vendor from the User's account.\n\nAll stored data about their Vendor account will be deleted, and any vehicles that were provided by that Vendor will disappear from the system." provider: enode method: DELETE path: "/me/vendors/{vendor}" encoding: json input: { type: "object" properties: { vendor: { type: "string" description: "Vendor ID" enum: ["TESLA", "BMW", "AUDI", "VOLKSWAGEN", "HYUNDAI", "PEUGEOT", "NISSAN"] } } required: ["vendor"] additionalProperties: false } output: { type: "object" additionalProperties: true } }