action kumpeapps_auth_appkey_patch { label: "Compromise app key" description: "Pass an app key to mark it as compromised. This may be submitted by the app owner or a concerned party that has optained the compromised app key." provider: kumpeapps method: PATCH path: "/authentication/appkey" encoding: json input: { type: "object" properties: { app_key: { type: "string" } comments: { type: "string" } } required: ["app_key"] additionalProperties: false } output: { type: "object" properties: { success: { type: "boolean" } } } }