GET api/website/get-stock-count

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

DashboardTotalStockDTO
NameDescriptionTypeAdditional information
BuyerCount

integer

None.

SellerCount

integer

None.

StockCount

integer

None.

ItemRequestCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "BuyerCount": 1,
  "SellerCount": 2,
  "StockCount": 3,
  "ItemRequestCount": 4
}

application/xml, text/xml

Sample:
<DashboardTotalStockDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SUM.Prod.RS.Common.Components.DTO.Website">
  <BuyerCount>1</BuyerCount>
  <ItemRequestCount>4</ItemRequestCount>
  <SellerCount>2</SellerCount>
  <StockCount>3</StockCount>
</DashboardTotalStockDTO>