> ## 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.

# Attach source to bot

> Attach a CloseBot source and routing rules to a bot.

`closeBot.attachSourceToBot` connects a source to a bot and configures which channels the bot may use.

```ts automations/attach-closebot-source.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { closeBot } from "automate.ax/closebot"

export default automation("Attach CloseBot source", () => {
  onDashboardRun({ title: "Attach source" })

  closeBot.attachSourceToBot({
    botId: "bot-id",
    sourceId: "source-id",
    channels: ["sms"],
    enabled: true,
  })
})
```

## Inputs

Provide `botId`, `sourceId`, and `channels`. Optional inputs configure tags, tag groups, channel rules, a persona name override, enabled state, and flow variables.

## Output

Returns `null` after CloseBot accepts the attachment.
