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

# Economy v2 Bundles

> Learn how to group multiple items into PlayFab Economy v2 bundles, configure bundle contents, pricing, and grant contents into player inventory.

<Info>
  Economy v2 is now Generally Available. For support and feedback, go to the [PlayFab Forum](https://community.playfab.com).
</Info>

Bundles allow you to group multiple items together into a single item. You can create bundles of items that are often purchased together, or items that are only available for a limited time.

## Creating a Bundle

To create a bundle, you must first make sure you have published Catalog Items, Currency, or user-generated content (UGC) that you want to be accessible/purchaseable in your game. You can follow the steps in the [Economy V2 Quickstart](/services/playfab/economy-monetization/economy-v2/quickstart#step-3---publish-an-item-to-the-catalog)

### GameManager

1. Navigate to **Economy** > **Catalog (V2)**.
2. Under the **Bundles** tab, select **New Bundle**.

### API

You can use the `CreateDraftItem` to create a bundle.

```json theme={null}

{
  "Item": {
    "Type": "bundle",
    "Title": {
      "NEUTRAL": "My First Bundle"
    },
    
    "StartDate": "2023-03-07T00:01:00.0000000Z",
    "ItemReferences":
        [{
            "Id":"{{LaserSwordID}}",
            "Amount": 2
        }, 
        {
            "Id":"{{LaserGunID}}", 
            "Amount": 2
        }],

    "PriceOptions": {
        "Prices": [
        {
              "Amounts": [
                {
                    "ItemId": "{{DiamondID}}",
                    "Amount": 5
                },
                {
                    "ItemId": "{{GoldID}}",
                    "Amount": 10
                }
                ]
        }
         ]
          }
        },
  "Publish": true
}
```

***

Response:

```json theme={null}
{
    "code": 200,
    "status": "OK",
    "data": {
        "Item": {
            "Id": "{{BundleID}}",
            "Type": "bundle",
            "AlternateIds": [],
            "Title": {
                "NEUTRAL": "My First Bundle"
            },
    ...
}
```

## Purchasing and Unpacking Bundles

When a player purchases a bundle, the bundle is \*\*automatically unpacked—the individual items referenced in the bundle are granted directly to the player's inventory. The bundle itself doesn't appear as an inventory item. For more details on how bundles interact with inventory, see [Bundles in Inventory](/services/playfab/economy-monetization/economy-v2/inventory#bundles).

Bundles are also the primary mechanism for linking real-money marketplace products to in-game items. Each bundle can be linked to one or more marketplace products using `AlternateIds`. For more information, see [Fraud Prevention Quickstart](/services/playfab/economy-monetization/economy-v2/fraud-prevention/quickstart).

## See also

* [Inventory Overview](/services/playfab/economy-monetization/economy-v2/inventory)
* [Stores](/services/playfab/economy-monetization/economy-v2/catalog/stores)
* [Marketplace Integrations](/services/playfab/economy-monetization/economy-v2/marketplace/marketplace-integrations/overview)
* [Fraud Prevention](/services/playfab/economy-monetization/economy-v2/fraud-prevention)


## Related topics

- [Economy v2 Real Money Prices](/services/playfab/economy-monetization/economy-v2/catalog/real-money-prices.md)
- [Real money price tracking in Economy v2](/services/playfab/economy-monetization/economy-v2/tutorials/real-money-price-tracking.md)
- [Getting started with Economy v2, Unity IAP, and Android](/services/playfab/economy-monetization/economy-v2/tutorials/getting-started-with-unity-and-android.md)
- [Economy version 2 (V2) FAQ](/services/playfab/economy-monetization/economy-v2/faq.md)
- [Catalog Overview](/services/playfab/economy-monetization/economy-v2/catalog/catalog-overview.md)
