# Accounting inventory

Source: https://developer.avalara.com/products/tax-compliance/integration-guides/extractor-en/transactions/accounting_inventory/

Guide: Brazil Returns (Tax compliance) - English

# Accounting inventory

Accounting inventory allows the user to send inventory data from the source system to Avalara's TaxCompliance application. This section describes the inventory information that must be extracted from the source system and sent to the TaxCompliance application.

The term "inventory" consists of the list of materials/products available in a company's stock - when they are stored in it or externally, but belonging to the company. In the following example, it is possible to verify the payload structure, as well as the functional description of the attributes:

```
[    {        "Companhia": {            "CodigoCIA": "1410"        },        "EstabelecimentoFiscal": {            "Companhia": {                "CodigoCIA": "1410"            },            "Codigo": "0001"        },        "Data": "2018-10-31",        "Item": {            "Codigo": "RM122",            "Companhia": {                "CodigoCIA": "1410",                "Descricao": "AVALARA BRASIL"            },            "Descricao": "RAW122,PD,FIFO lote; import.suprimento",            "UnidadeMedidaEstoque": {                "Companhia": {                    "CodigoCIA": "1410",                    "Descricao": "AVALARA BRASIL"                },                "Codigo": "PEÇ",                "Descricao": "Peça"            },            "CodigoClassificacaoFiscal": "01011900",            "TipoItem": {                "Codigo": "01"            }        },        "IndicadorPropriedade": "0",        "UnidadeMedida": {            "Companhia": {                "CodigoCIA": "1410"            },            "Codigo": "PEÇ"        },        "Quantidade": 2000,        "ValorUnitario": 0.75,        "ValorItem": 1500,        "CodigoContaContabil": "0013100000"    }]
```

It is worth mentioning that, in order to optimize performance, this is a simplified endpoint, which does not upsert the relational objects (`Lookup`or `Foreign Key`).

[Previous](/extractor-en/transactions/accounting_module/account_balance)

[Next](/extractor-en/functional_review)