GET api/Warehouse/AccountInventories

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of AccountInventoryData
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

AccountId

globally unique identifier

None.

ProductId

globally unique identifier

None.

QtyOnHand

decimal number

Required

ReserveQty

decimal number

Required

QtyOnOrder

decimal number

Required

QtyOnSalesOrder

decimal number

Required

NextDeliveryDate

date

None.

Identifier

string

None.

Location

string

None.

Bin

string

None.

Updated

date

None.

IsDeleted

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "73bfa868-bc6e-4177-829a-3bbaa3270677",
    "AccountId": "b395a8a9-bb21-4ea8-ab60-7c619cccec11",
    "ProductId": "1839568b-c9c6-4d66-a1ab-80f20c13cef4",
    "QtyOnHand": 3.0,
    "ReserveQty": 4.0,
    "QtyOnOrder": 5.0,
    "QtyOnSalesOrder": 6.0,
    "NextDeliveryDate": "2025-10-26T03:41:07.068796-04:00",
    "Identifier": "sample string 7",
    "Location": "sample string 8",
    "Bin": "sample string 9",
    "Updated": "2025-10-26T03:41:07.068796-04:00",
    "IsDeleted": 10
  },
  {
    "Id": "73bfa868-bc6e-4177-829a-3bbaa3270677",
    "AccountId": "b395a8a9-bb21-4ea8-ab60-7c619cccec11",
    "ProductId": "1839568b-c9c6-4d66-a1ab-80f20c13cef4",
    "QtyOnHand": 3.0,
    "ReserveQty": 4.0,
    "QtyOnOrder": 5.0,
    "QtyOnSalesOrder": 6.0,
    "NextDeliveryDate": "2025-10-26T03:41:07.068796-04:00",
    "Identifier": "sample string 7",
    "Location": "sample string 8",
    "Bin": "sample string 9",
    "Updated": "2025-10-26T03:41:07.068796-04:00",
    "IsDeleted": 10
  }
]

application/xml, text/xml

Sample:
<ArrayOfAccountInventoryData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models">
  <AccountInventoryData>
    <AccountId>b395a8a9-bb21-4ea8-ab60-7c619cccec11</AccountId>
    <Bin>sample string 9</Bin>
    <Id>73bfa868-bc6e-4177-829a-3bbaa3270677</Id>
    <Identifier>sample string 7</Identifier>
    <IsDeleted>10</IsDeleted>
    <Location>sample string 8</Location>
    <NextDeliveryDate>2025-10-26T03:41:07.068796-04:00</NextDeliveryDate>
    <ProductId>1839568b-c9c6-4d66-a1ab-80f20c13cef4</ProductId>
    <QtyOnHand>3</QtyOnHand>
    <QtyOnOrder>5</QtyOnOrder>
    <QtyOnSalesOrder>6</QtyOnSalesOrder>
    <ReserveQty>4</ReserveQty>
    <Updated>2025-10-26T03:41:07.068796-04:00</Updated>
  </AccountInventoryData>
  <AccountInventoryData>
    <AccountId>b395a8a9-bb21-4ea8-ab60-7c619cccec11</AccountId>
    <Bin>sample string 9</Bin>
    <Id>73bfa868-bc6e-4177-829a-3bbaa3270677</Id>
    <Identifier>sample string 7</Identifier>
    <IsDeleted>10</IsDeleted>
    <Location>sample string 8</Location>
    <NextDeliveryDate>2025-10-26T03:41:07.068796-04:00</NextDeliveryDate>
    <ProductId>1839568b-c9c6-4d66-a1ab-80f20c13cef4</ProductId>
    <QtyOnHand>3</QtyOnHand>
    <QtyOnOrder>5</QtyOnOrder>
    <QtyOnSalesOrder>6</QtyOnSalesOrder>
    <ReserveQty>4</ReserveQty>
    <Updated>2025-10-26T03:41:07.068796-04:00</Updated>
  </AccountInventoryData>
</ArrayOfAccountInventoryData>