action kumpeapps_auth_authkey_post { label: "Request auth key for user (login user)" description: "Obtain auth key for user that has provided their username and password to login to your app. (or to obtain an auth key for a script like IFTTT)" provider: kumpeapps method: POST path: "/authentication/authkey" encoding: json input: { type: "object" properties: { otp: { type: "string" format: "password" } password: { type: "string" format: "password" } username: { type: "string" } } required: ["password", "username"] additionalProperties: false } output: { type: "object" properties: { auth_key: { type: "string" } success: { type: "boolean" } } } }