> ## 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 Vercel integration configuration transferred

> Start an automation when a Vercel integration installation changes owner.

`onVercelIntegrationConfigurationTransferred` emits when the integration installation moves between a personal account and a team, or between teams.

```ts automations/watch-transferred-vercel-installations.automation.ts theme={null}
import { automation } from "automate.ax"
import { onVercelIntegrationConfigurationTransferred } from "automate.ax/vercel"

export default automation("Watch transferred Vercel installations", () => {
  const event = onVercelIntegrationConfigurationTransferred()
  event.transform(({ payload }) => ({
    configurationId: payload.configuration.id,
    newOwnerId: payload.newTeamId ?? payload.newAccountId,
    previousOwnerId: payload.previousTeamId ?? payload.previousAccountId,
  }))
})
```

Optional static `account` defaults to the project's Vercel OAuth binding. Automate.ax automatically rebinds the installation source to its new owner before delivery.

## Trigger data

Returns `type: "integration-configuration.transferred"`. The payload includes `installationId` plus nullable previous and new team or personal-account IDs.
