action kumpeapps_auth_authkey_patch { label: "Compromise auth key" description: "Mark user auth key as compromised" provider: kumpeapps method: PATCH path: "/authentication/authkey" encoding: json input: { type: "object" properties: { auth_key: { type: "string" format: "password" } comments: { type: "string" } } required: ["auth_key"] additionalProperties: false } output: { type: "object" properties: { success: { type: "boolean" } } } }