action kumpeapps_auth_appkey_post { label: "Request app key" description: "Request a new app key by passing username and password for app account" provider: kumpeapps method: POST path: "/authentication/appkey" encoding: json input: { type: "object" properties: { password: { type: "string" format: "password" } supportsYubikey: { type: "boolean" } username: { type: "string" } } required: ["password", "supportsYubikey", "username"] additionalProperties: false } output: { type: "object" required: ["app_key"] properties: { app_key: { type: "string" } success: { type: "boolean" } } } }