> For the complete documentation index, see [llms.txt](https://docs.tebex.io/developers/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tebex.io/developers/headless-api/guides/baskets/gifting-packages.md).

# Gifting Packages

If **Allow Gifting** is enabled, players can gift packages to other players. This is enabled in your store settings at [**Settings → Checkout**](https://creator.tebex.io/payment-methods/settings).

Include `target_username_id` , or `target_username` **when adding the package to the basket** and the package will be delivered to that player rather than the buyer.

The **target\_username\_id** should be a unique identifier for the player instead of their name (such as a Minecraft UUID or Steam ID):

```json
{
    "package_id": "6276316",

    // provide ONE of these:
    "target_username_id": "069a79f444e94726a5befca90e38aaf5",
    "target_username": "TebexDev"
}
```

{% hint style="warning" %}
Bedrock and Geyser stores must provide **target\_username** instead of the UUID due to differences in player IDs between Minecraft: Java Edition and Minecraft: Bedrock Edition.
{% endhint %}
