> ## Documentation Index
> Fetch the complete documentation index at: https://docs.automate.ax/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# On application access removed

> Start an automation when a user removes authorization from your Discord application.

`discord.onApplicationDeauthorized` receives `APPLICATION_DEAUTHORIZED` when a user revokes the application authorization.

```ts automations/discord-uninstall.automation.ts theme={null}
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.
})
```

The payload includes the user who removed authorization and event metadata. Optional `account` selects the Discord application.
