GET api/stock/GetIncompleteStockList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of StockList
NameDescriptionTypeAdditional information
StockListUUID

globally unique identifier

None.

ListAddress

string

None.

UsersName

string

None.

UsersUUID

globally unique identifier

None.

ListDate

date

None.

Collected

boolean

None.

IsPlant

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StockListUUID": "e7b11e16-056b-4e5a-bcb5-c0c84f223471",
    "ListAddress": "sample string 3",
    "UsersName": "sample string 4",
    "UsersUUID": "60e314a6-7ccb-45de-a14e-17df1e7f08fe",
    "ListDate": "2025-12-11T16:03:36.9338149+00:00",
    "Collected": true,
    "IsPlant": true
  },
  {
    "StockListUUID": "e7b11e16-056b-4e5a-bcb5-c0c84f223471",
    "ListAddress": "sample string 3",
    "UsersName": "sample string 4",
    "UsersUUID": "60e314a6-7ccb-45de-a14e-17df1e7f08fe",
    "ListDate": "2025-12-11T16:03:36.9338149+00:00",
    "Collected": true,
    "IsPlant": true
  }
]

text/xml

Sample:
<ArrayOfStockList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OnlineManagementSystemWebApi.Models">
  <StockList>
    <Collected>true</Collected>
    <IsPlant>true</IsPlant>
    <ListAddress>sample string 3</ListAddress>
    <ListDate>2025-12-11T16:03:36.9338149+00:00</ListDate>
    <StockListUUID>e7b11e16-056b-4e5a-bcb5-c0c84f223471</StockListUUID>
    <UsersName>sample string 4</UsersName>
    <UsersUUID>60e314a6-7ccb-45de-a14e-17df1e7f08fe</UsersUUID>
  </StockList>
  <StockList>
    <Collected>true</Collected>
    <IsPlant>true</IsPlant>
    <ListAddress>sample string 3</ListAddress>
    <ListDate>2025-12-11T16:03:36.9338149+00:00</ListDate>
    <StockListUUID>e7b11e16-056b-4e5a-bcb5-c0c84f223471</StockListUUID>
    <UsersName>sample string 4</UsersName>
    <UsersUUID>60e314a6-7ccb-45de-a14e-17df1e7f08fe</UsersUUID>
  </StockList>
</ArrayOfStockList>