> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/taxes/llms.txt)
> Source: https://docs.saleor.io/api-reference/taxes/mutations/tax-exemption-manage

# taxExemptionManage Mutation

Exempt checkout or order from charging the taxes. When tax exemption is enabled, taxes won't be charged for the checkout or order. Taxes may still be calculated in cases when product prices are entered with the tax included and the net price needs to be known.

Requires the MANAGE\_TAXES permission.

```graphql
taxExemptionManage(
  id: ID!
  taxExemption: Boolean!
): TaxExemptionManage
```

Details

```graphql
type TaxExemptionManage {
  taxableObject: TaxSourceObject
  errors: [TaxExemptionManageError!]!
}
```

<a id="arguments"></a>

### Arguments

<a id="id"></a>

#### [`id`](#id) ● [`ID!`](/api-reference/miscellaneous/scalars/id.md)

ID of the Checkout or Order object.

<a id="tax-exemption"></a>

#### [`taxExemption`](#tax-exemption) ● [`Boolean!`](/api-reference/miscellaneous/scalars/boolean.md)

Determines if a taxes should be exempt.

<a id="type"></a>

### Type

<a id="taxexemptionmanage"></a>

#### [`TaxExemptionManage`](/api-reference/taxes/objects/tax-exemption-manage.md)

Exempt checkout or order from charging the taxes. When tax exemption is enabled, taxes won't be charged for the checkout or order. Taxes may still be calculated in cases when product prices are entered with the tax included and the net price needs to be known.

Requires the MANAGE\_TAXES permission.
