discord.onApplicationDeauthorized receives APPLICATION_DEAUTHORIZED when a user revokes the application authorization.
automations/discord-uninstall.automation.ts
account selects the Discord application.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Start an automation when a user removes authorization from your Discord application.
discord.onApplicationDeauthorized receives APPLICATION_DEAUTHORIZED when a user revokes the application authorization.
import { automation } from "automate.ax"
import { discord } from "automate.ax/discord"
export default automation("Record removed Discord access", () => {
const event = discord.onApplicationDeauthorized()
// Remove event.data.user.id from your application install registry.
})
account selects the Discord application.