# Example

Source: https://developer.avalara.com/products/crossborder/integration-guides/avatax-for-cdit/abv0828256529279/

Guide: AvaTax Cross-Border (Customs Duty and Import Tax)

# Example

Learn how to use the override with this example.

The following example shows how to use the `taxAmountByTaxType` override.

```
{
    "lines": [
        {
            "number": "1",
            "quantity": 1,
            "amount": 950,
            "itemCode": "SKU 1000.6",
            "taxCode": "P00000000",
            "description": "Cuban Links",
            "category": "Man &gt; Jewelry ; Gold &gt; Braclet",
            "taxIncluded" : false,
            "hsCode": "6204420090",
            "taxOverride": {
                "type": "TaxAmountByTaxType",
                "reason": "Capture shipping receipt details",
                "taxAmountByTaxTypes": [
                    {
                        "taxTypeId": "LandedCost",
                        "taxAmount": 50
                    },
                    {
                        "taxTypeId": "I",
                        "taxAmount": 50
                    }
                ]
            }
        }
    ],
...
}
```