action kumpeapps_authkey_put { label: "Deactivate auth key (logout)" description: "Deactivate auth key for user logging them out of your application" provider: kumpeapps method: PUT path: "/authkey" encoding: json input: { type: "object" properties: { auth_key: { type: "string" format: "password" } } required: ["auth_key"] additionalProperties: false } output: { type: "object" properties: { success: { type: "boolean" } } } }