# Chapter 5.5.9 - Tax Calculation Settings Response

Source: https://developer.avalara.com/products/communications/integration-guides/dev-guide_rest_v2/reference/tax-calculation-settings-response/

-   [Previous](/communications/dev-guide_rest_v2/reference/customization-override/)
-   [Next](/communications/dev-guide_rest_v2/reference/customization-error/)

### Tax Calculation Settings Response

The `TaxCalculationSettingsResponse` object returns the results of a **customization update**:

Key

Value

`ProfileConfigId`

`[int]` Profile Configuration Id  

Unique Profile Configuration Id associated with the customization item  

`ProfileIds`

`[List<int>]` Profile Ids  

Profile Id(s) associated with the customization item  

`ClientId`

`[int]` Client Id  

Client Id associated with the customization  

`LastUpdatedBy`

`[string]` Last Updated By  

User who last updated the customization item  

`Active`

`[bool]` Active  

-   `true`: Customization Item is active
-   `false`: Customization item is inactive

`Settings`

[`[Configuration]`](/communications/dev-guide_rest_v2/reference/customization-configuration/) Configuration Settings  

Settings associated with a client profile customization (as applicable)  

`Exclusions`

[`[ExclusionConfig]`](/communications/dev-guide_rest_v2/reference/customization-exclusion/) Exclusions  

List of exclusions associated with a client profile customization (as applicable)  

`Bundles`

[`[BundleConfig]`](/communications/dev-guide_rest_v2/reference/customization-bundle/) Bundles  

List of bundles associated with a client profile customization (as applicable)  

`Nexus`

[`[NexusConfig]`](/communications/dev-guide_rest_v2/reference/customization-nexus/) Nexus  

List of nexus associated with a client profile customization (as applicable)  

`Overrides`

[`[OverrideConfig]`](/communications/dev-guide_rest_v2/reference/customization-override/) Overrides  

List of overrides associated with a client profile customization (as applicable)  

`Description`

`[string]` Description  

Description associated with the customization item  

`Error`

`[string]` Error  

Error message  

`ItemType`

`[string]` Item Type  

Item Type of the customization item

-   Configuration
-   Bundle
-   Exclusion
-   Override

`Errors`

[`[Error]`](/communications/dev-guide_rest_v2/reference/customization-error/) Errors  

Error Information  

`Warnings`

[`[Warning]`](/communications/dev-guide_rest_v2/reference/customization-warning/) Warnings  

Warnings Information  

`Status`

[`[Status]`](/communications/dev-guide_rest_v2/reference/customization-status/) Status  

Status Information  

### Example

#### GetProfiles Response Example

```json
[ { "ProfileConfigId": 1, "ProfileIds": [ 1, 2, 3 ], "ClientId": 999, "LastUpdateBy": "CommunicationSupport@avalara.com", "Active": true, "Settings": { // Configuration }, "Description": "Sample Set Config Description", "ItemType": "Configuration" }]
```

#### SetConfig Response Example

```json
[ { "ProfileConfigId": 1, "ProfileIds": [ 1, 2, 3 ], "ClientId": 999, "LastUpdateBy": "CommunicationSupport@avalara.com", "Active": true, "Settings": { // Configuration }, "Description": "Sample Set Config Description", "Status": [ { // Status } ] }]
```

-   [Previous](/communications/dev-guide_rest_v2/reference/customization-override/)
-   [Next](/communications/dev-guide_rest_v2/reference/customization-error/)