# Taxation Items The TaxationItem object is used to add a tax amount to an invoice item. Z-Tax and third-party tax engines such as Avalara or Connect tax engine can create TaxationItem objects. Before you use the Taxation Item object, you have to configure Z-Tax, Avalara, or Connect tax engine, as the object's fields rely on the values you create during the configuration process. ## List taxation items - [GET /taxation_items](https://developer.zuora.com/other-api/quickstart-api/taxation-items/gettaxationitems.md): Returns an array of taxation items. Each entry in the array is a separate Taxation Item object. If no more taxation items are available, the resulting array will be empty. This request should never return an error. ## Create a taxation item - [POST /taxation_items](https://developer.zuora.com/other-api/quickstart-api/taxation-items/createtaxationitem.md): Creates a taxation item. ## Retrieve a taxation item - [GET /taxation_items/{taxation_item_id}](https://developer.zuora.com/other-api/quickstart-api/taxation-items/gettaxationitem.md): Retrieves the taxation item with the given ID. ## Update a taxation item - [PATCH /taxation_items/{taxation_item_id}](https://developer.zuora.com/other-api/quickstart-api/taxation-items/updatetaxationitem.md): Updates a taxation item by setting the values of the specified fields. Any fields not provided in the request remain unchanged. ## Delete a taxation item - [DELETE /taxation_items/{taxation_item_id}](https://developer.zuora.com/other-api/quickstart-api/taxation-items/deletetaxationitem.md): Permanently deletes a taxation item. This operation cannot be undone once it is performed.