GET api/InventoryReport/{id}?type={type}

Gets a list inventory report item.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Organization Id.

integer

Required

type

List Type.

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of InventoryReport
NameDescriptionTypeAdditional information
ItemId

integer

None.

Name

string

None.

Sku

string

None.

UpdatedDate

date

None.

UpdatedBy

string

None.

GlobalId

string

None.

PricePerUnitPurchase

decimal number

None.

Code

string

None.

InventoryCount

integer

None.

ReorderCount

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ItemId": 1,
    "Name": "sample string 2",
    "Sku": "sample string 3",
    "UpdatedDate": "2025-01-15T16:43:17.4298673+00:00",
    "UpdatedBy": "sample string 4",
    "GlobalId": "sample string 5",
    "PricePerUnitPurchase": 1.0,
    "Code": "sample string 6",
    "InventoryCount": 1,
    "ReorderCount": 1
  },
  {
    "ItemId": 1,
    "Name": "sample string 2",
    "Sku": "sample string 3",
    "UpdatedDate": "2025-01-15T16:43:17.4298673+00:00",
    "UpdatedBy": "sample string 4",
    "GlobalId": "sample string 5",
    "PricePerUnitPurchase": 1.0,
    "Code": "sample string 6",
    "InventoryCount": 1,
    "ReorderCount": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfInventoryReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomersdbWebShared.Models">
  <InventoryReport>
    <Code>sample string 6</Code>
    <GlobalId>sample string 5</GlobalId>
    <InventoryCount>1</InventoryCount>
    <ItemId>1</ItemId>
    <Name>sample string 2</Name>
    <PricePerUnitPurchase>1</PricePerUnitPurchase>
    <ReorderCount>1</ReorderCount>
    <Sku>sample string 3</Sku>
    <UpdatedBy>sample string 4</UpdatedBy>
    <UpdatedDate>2025-01-15T16:43:17.4298673+00:00</UpdatedDate>
  </InventoryReport>
  <InventoryReport>
    <Code>sample string 6</Code>
    <GlobalId>sample string 5</GlobalId>
    <InventoryCount>1</InventoryCount>
    <ItemId>1</ItemId>
    <Name>sample string 2</Name>
    <PricePerUnitPurchase>1</PricePerUnitPurchase>
    <ReorderCount>1</ReorderCount>
    <Sku>sample string 3</Sku>
    <UpdatedBy>sample string 4</UpdatedBy>
    <UpdatedDate>2025-01-15T16:43:17.4298673+00:00</UpdatedDate>
  </InventoryReport>
</ArrayOfInventoryReport>