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

# Answer Smart FAQs

> Save answers for multiple CloseBot Smart FAQs.

`closeBot.answerSmartFaqs` answers one or more existing Smart FAQs in one request.

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

export default automation("Answer CloseBot FAQs", () => {
  onDashboardRun({ title: "Answer Smart FAQs" })

  closeBot.answerSmartFaqs({
    faqs: [{ id: "faq-id", answer: "Monday through Friday." }],
  })
})
```

## Inputs

Provide a non-empty `faqs` array of FAQ IDs and answers. Automate.ax translates this camelCase input to CloseBot's unusual `faQs` wire field.

## Output

Returns the updated Smart FAQs.
