action simplivpn_enable_user { label: "EnableUser" description: "This route allows you to enable a user's vpn access. This route can only be called using your user's Bearer Auth token." provider: simplivpn method: POST path: "/enable-user" encoding: json input: { type: "object" required: ["username"] properties: { username: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }