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

# Update booking limits

> Replaces the connected user's booking frequency and duration limits.

`calcom.updateBookingLimits` replaces the connected user's booking frequency and duration limits.

```ts automations/update-booking-limits.automation.ts theme={null}
import { automation, markSignificant } from "automate.ax"
import { calcom } from "automate.ax/calcom"

export default automation("Update booking limits", () => {
  markSignificant(calcom.updateBookingLimits({ perDay: 4, perWeek: 12 }))
})
```

## Input

Pass these fields:

| Field      | Type             | Required | Description |
| ---------- | ---------------- | -------- | ----------- |
| `perDay`   | `number \| null` | No       | —           |
| `perWeek`  | `number \| null` | No       | —           |
| `perMonth` | `number \| null` | No       | —           |
| `perYear`  | `number \| null` | No       | —           |

## Output

Returns an object with these fields:

| Field      | Type             | Required | Description |
| ---------- | ---------------- | -------- | ----------- |
| `perDay`   | `number \| null` | Yes      | —           |
| `perWeek`  | `number \| null` | Yes      | —           |
| `perMonth` | `number \| null` | Yes      | —           |
| `perYear`  | `number \| null` | Yes      | —           |

Cal.com enforces account role, plan, and availability requirements. Provider rejections surface as structured action failures with the HTTP status and any `Retry-After` delay.
