# Chapter 5.5.6 - Bundle Item

Source: https://developer.avalara.com/products/communications/integration-guides/dev-guide_rest_v2/reference/customization-bundle-item/

-   [Previous](/communications/dev-guide_rest_v2/reference/customization-bundle/)
-   [Next](/communications/dev-guide_rest_v2/reference/customization-nexus/)

### Bundle Item

The `BundleItem` object allows the user to specify **bundled items** associated with a bundle package. For more information, see [Bundle File](/communications/dev-guide_rest_v2/customizing-transactions/bundle-file/):

Key

Value

`TransactionId`

`[int]` Transaction Type Id  

The first part of the T/S Pair that defines the bundled item  

For a list of transaction/service types, check out the [`/api/v2/afc/tspairs` endpoint](/communications/dev-guide_rest_v2/getting-started/environments-endpoints#lookups)  

`ServiceId`

`[int]` Service Type Id  

The second part of the T/S Pair that defines the bundled item  

For a list of transaction/service types, check out the [`/api/v2/afc/tspairs` endpoint](/communications/dev-guide_rest_v2/getting-started/environments-endpoints#lookups)  

`Percentage`

`[double]` Percentage  

Percentage of the package charge to be applied to the bundled item  

`FixedAmount`

`[double]` Fixed Amount  

Fixed charge to be applied to a bundled item  

`Lines`

`[int]` Lines  

Fixed lines to be applied to a bundled item  

`Minutes`

`[double]` Minutes  

Fixed minutes to be applied to a bundled item  

`TransactionDesc`

`[string]` Transaction Type Description  

Description of the Transaction Type  

For a list of transaction/service types, check out the [`/api/v2/afc/tspairs` endpoint](/communications/dev-guide_rest_v2/getting-started/environments-endpoints#lookups)  

`ServiceDesc`

`[string]` Service Type Description  

Description of the Service Type  

For a list of transaction/service types, check out the [`/api/v2/afc/tspairs` endpoint](/communications/dev-guide_rest_v2/getting-started/environments-endpoints#lookups)  

### Example

```json
"BundleItems": [ { "TransactionId": 13, "ServiceId": 6, "Percentage": 40.0 }]
```

-   [Previous](/communications/dev-guide_rest_v2/reference/customization-bundle/)
-   [Next](/communications/dev-guide_rest_v2/reference/customization-nexus/)