# POST /api/v1/billing/addon

> Toggle Addon

- **Tag:** billing
- **Operation ID:** `toggle_addon_api_v1_billing_addon_post`

## Description

Add or remove an add-on from the business's Stripe subscription.

**Request Body:**
- `addon_slug`: Add-on module slug from AddOnModule enum
- `action`: 'add' (charges prorated amount immediately) or 'remove' (effective at period end, no refund)

**Effect:**
- Adding: Stripe subscription is updated, prorated amount is charged immediately
- Removing: Item removed with no proration, takes effect at period end

## Authentication

Bearer token in `Authorization` header.
Required header: `x-business-id: <business uuid>`.

## Request body

Schema: `AddonToggleRequest`

- `addon_slug` (string · required) — Add-on module slug (e.g. 'ai_pro').
- `action` (string · required) (one of: add, remove) — 'add' or 'remove'.

## Responses

### 201 — Successful Response

### 422 — Validation Error

Schema: `HTTPValidationError`

- `detail` (array · ValidationError) → `ValidationError`
  - `loc` (array · string | integer · required)
  - `msg` (string · required)
  - `type` (string · required)
  - `input` (object)
  - `ctx` (object)

## Code samples

### cURL

```bash
curl -X POST 'https://api.ondayzero.com/api/v1/billing/addon' \
  -H 'Authorization: Bearer dz_your_token' \
  -H 'x-business-id: YOUR_BUSINESS_ID' \
  -H 'Content-Type: application/json' \
  -d '{
  "addon_slug": "string",
  "action": "add"
}'
```

### JavaScript

```javascript
const response = await fetch('https://api.ondayzero.com/api/v1/billing/addon', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer dz_your_token',
    'x-business-id': 'YOUR_BUSINESS_ID',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
  "addon_slug": "string",
  "action": "add"
}),
});
const data = await response.json();
```

### Python

```python
import httpx

headers = {
    "Authorization": "Bearer dz_your_token",
    "x-business-id": "YOUR_BUSINESS_ID",
}

payload = {
  "addon_slug": "string",
  "action": "add"
}

response = httpx.post("https://api.ondayzero.com/api/v1/billing/addon", headers=headers, json=payload)
data = response.json()
```

## See also

- HTML version: https://www.ondayzero.com/docs/reference/billing/toggle-addon
- OpenAPI slice: https://www.ondayzero.com/docs/reference/billing/toggle-addon/openapi.json
- Other endpoints in **billing**: https://www.ondayzero.com/docs/reference/billing
