> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anny.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Create booking-bundle-group

> Create a booking bundle group.

Create a booking bundle group. Requires `create` / `update` permission and `?o={organization_id}`.

```http theme={null}
POST /api/v1/booking-bundle-groups?o={organization_id}
```

```json theme={null}
{
  "data": {
    "type": "booking-bundle-groups",
    "attributes": {
      "name": "Gift cards",
      "description": "Vouchers and gift packages",
      "order_index": 1
    }
  }
}
```

<ParamField path="body.data.attributes.name" type="string" required>
  Group name (max 191).
</ParamField>

<ParamField path="body.data.attributes.description" type="string">
  Optional description.
</ParamField>

<ParamField path="body.data.attributes.order_index" type="number">
  Display order.
</ParamField>

<ParamField path="body.data.attributes.local_name_i18n" type="object">
  Name translations, keyed by locale.
</ParamField>

<ParamField path="body.data.attributes.description_i18n" type="object">
  Description translations, keyed by locale.
</ParamField>
