An inventory count report, when returned from the API have the following fields

Field Name Type Description Example value
inventory_store_id string(UUID) Unique identifier of the inventory store de1e3597-b0a0-48a8-8b40-2daf500645ac
inventory_store_name string Name of the inventory store "Main Inventory Store”
inventory_item_id string(UUID) Unique identifier for this inventory item. "e79a0b74-3aba-4149-9f74-0bb5791a6ee6"
inventory_item_name string Name of the inventory item “Tequila 750 mL Bottle”
procurement_uom enum Unit of measure the inventory item is procured in.

See table below for possible values. | pk | | serving_uom | enum | Unit of measure the inventory item is served in.

See table below for possible values. | oz | | procurement_to_serving | int | Conversion of procurement to serving units of measure.

Example, if hamburger patties come as packs of 50, but are served as individual patties, the conversion would be 50. | 50 | | price | int | Price/cost of the inventory item in centavos / cents | 2000 | | supplier | string | Supplier of the inventory item | “ABC Liquors” | | reorder_point | int | The amount, measured in procurement unit of measure, at which point the item is reordered. | 4 | | reorder_amount | int | The amount, measured in procurement unit of measure, that is reordered. | 3 | | reorder_amount | int | The amount of reorders, expressed in serving_uom | 5 | | restock_amount | int | The amount of restocks, expressed in serving_uom | 36 | | depletion_amount | int | The amount of depletions, expressed in serving_uom | 1 | | adjust_inc_amount | int | The amount of increase adjustments, expressed in serving_uom | 0 | | adjust_dec_amount | int | The amount of decrease adjustments, expressed in serving_uom | 0 | | transfer_from_amount | int | The amount of transfers out, expressed in serving_uom | 0 | | transfer_to_amount | int | The amount of transfers in, expressed in serving_uom | 0 | | total_amount | int | The total amount of the inventory item on hand for this record, expressed in serving_uom | 35 |