GET api/inventory/adjustments

Request Information

URI Parameters

Name Type Description Additional information
startDate date

Required

endDate date

Required

Body Parameters

None

Response Information

Resource Description

PagedResponseOfInventoryAdjustment
Name Type Description Additional information
Data Collection of InventoryAdjustment

TotalCount integer

Response Formats

application/json, text/json

Sample:
{
  "Data": [
    {
      "ClientName": "sample string 1",
      "WarehouseCode": "sample string 2",
      "TransactionDate": "2024-10-21T11:38:36.1997755+00:00",
      "EntryType": "sample string 4",
      "Quantity": 5.0,
      "ItemCode": "sample string 6",
      "Note": "sample string 7",
      "LotNumber": "sample string 8",
      "TransactionId": "sample string 9",
      "ItemUoM": "sample string 10"
    },
    {
      "ClientName": "sample string 1",
      "WarehouseCode": "sample string 2",
      "TransactionDate": "2024-10-21T11:38:36.1997755+00:00",
      "EntryType": "sample string 4",
      "Quantity": 5.0,
      "ItemCode": "sample string 6",
      "Note": "sample string 7",
      "LotNumber": "sample string 8",
      "TransactionId": "sample string 9",
      "ItemUoM": "sample string 10"
    }
  ],
  "TotalCount": 1
}

application/xml, text/xml

Sample:
<PagedResponseOfInventoryAdjustment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Data>
    <InventoryAdjustment>
      <ClientName>sample string 1</ClientName>
      <WarehouseCode>sample string 2</WarehouseCode>
      <TransactionDate>2024-10-21T11:38:36.1997755+00:00</TransactionDate>
      <EntryType>sample string 4</EntryType>
      <Quantity>5</Quantity>
      <ItemCode>sample string 6</ItemCode>
      <Note>sample string 7</Note>
      <LotNumber>sample string 8</LotNumber>
      <TransactionId>sample string 9</TransactionId>
      <ItemUoM>sample string 10</ItemUoM>
    </InventoryAdjustment>
    <InventoryAdjustment>
      <ClientName>sample string 1</ClientName>
      <WarehouseCode>sample string 2</WarehouseCode>
      <TransactionDate>2024-10-21T11:38:36.1997755+00:00</TransactionDate>
      <EntryType>sample string 4</EntryType>
      <Quantity>5</Quantity>
      <ItemCode>sample string 6</ItemCode>
      <Note>sample string 7</Note>
      <LotNumber>sample string 8</LotNumber>
      <TransactionId>sample string 9</TransactionId>
      <ItemUoM>sample string 10</ItemUoM>
    </InventoryAdjustment>
  </Data>
  <TotalCount>1</TotalCount>
</PagedResponseOfInventoryAdjustment>