POST api/MeetingInterview/GetLowStockProductQuantity

Request Information

URI Parameters

None.

Body Parameters

SrePushSaleModel
NameDescriptionTypeAdditional information
LowStockProducts

Collection of LowStockProductModel

None.

LoginUserId

integer

None.

CustomerId

integer

None.

BusinessId

integer

None.

StateName

string

None.

CityName

string

None.

TownId

integer

None.

StateId

integer

None.

OrderSource

string

None.

Request Formats

application/json, text/json

Sample:
{
  "LowStockProducts": [
    {
      "SkuID": 1,
      "IsBoughtFromUs": 2,
      "StockPointID": 3,
      "ItemName": "sample string 4",
      "StockPointSellingPrice": 5,
      "Price": 6
    },
    {
      "SkuID": 1,
      "IsBoughtFromUs": 2,
      "StockPointID": 3,
      "ItemName": "sample string 4",
      "StockPointSellingPrice": 5,
      "Price": 6
    }
  ],
  "LoginUserId": 1,
  "CustomerId": 2,
  "BusinessId": 3,
  "StateName": "sample string 4",
  "CityName": "sample string 5",
  "TownId": 6,
  "StateId": 7,
  "OrderSource": "sample string 8"
}

application/xml, text/xml

Sample:
<SrePushSaleModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <LowStockProducts>
    <LowStockProductModel>
      <SkuID>1</SkuID>
      <IsBoughtFromUs>2</IsBoughtFromUs>
      <StockPointID>3</StockPointID>
      <ItemName>sample string 4</ItemName>
      <StockPointSellingPrice>5</StockPointSellingPrice>
      <Price>6</Price>
    </LowStockProductModel>
    <LowStockProductModel>
      <SkuID>1</SkuID>
      <IsBoughtFromUs>2</IsBoughtFromUs>
      <StockPointID>3</StockPointID>
      <ItemName>sample string 4</ItemName>
      <StockPointSellingPrice>5</StockPointSellingPrice>
      <Price>6</Price>
    </LowStockProductModel>
  </LowStockProducts>
  <LoginUserId>1</LoginUserId>
  <CustomerId>2</CustomerId>
  <BusinessId>3</BusinessId>
  <StateName>sample string 4</StateName>
  <CityName>sample string 5</CityName>
  <TownId>6</TownId>
  <StateId>7</StateId>
  <OrderSource>sample string 8</OrderSource>
</SrePushSaleModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

VCAPIResponse
NameDescriptionTypeAdditional information
Version

string

None.

dateTime

string

None.

StatusCode

integer

None.

ErrorMessage

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Version": "1.0.0",
  "dateTime": "2025/04/28 14:25:16",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}

application/xml, text/xml

Sample:
<VCAPIResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <StatusCode>1</StatusCode>
  <ErrorMessage>sample string 2</ErrorMessage>
  <Result />
</VCAPIResponse>