POST api/Products/GetOrderStockList

Request Information

URI Parameters

None.

Body Parameters

OrderStockListModel
NameDescriptionTypeAdditional information
Id

integer

None.

UserId

integer

None.

Status

string

None.

CreatedOn

string

None.

TotalAmt

decimal number

None.

CreatedBy

string

None.

SOType

string

None.

Name

string

None.

ImagePath

string

None.

BranchID

integer

None.

ProdQty

integer

None.

Products

Collection of Products

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "UserId": 2,
  "Status": "sample string 3",
  "CreatedOn": "sample string 4",
  "TotalAmt": 5.1,
  "CreatedBy": "sample string 6",
  "SOType": "sample string 7",
  "Name": "sample string 8",
  "ImagePath": "sample string 9",
  "BranchID": 10,
  "ProdQty": 11,
  "Products": [
    {
      "Id": 1,
      "Name": "sample string 2",
      "ImagePath": "sample string 3",
      "ProdQty": 4
    },
    {
      "Id": 1,
      "Name": "sample string 2",
      "ImagePath": "sample string 3",
      "ProdQty": 4
    }
  ]
}

application/xml, text/xml

Sample:
<OrderStockListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AssociateAPI.Models">
  <BranchID>10</BranchID>
  <CreatedBy>sample string 6</CreatedBy>
  <CreatedOn>sample string 4</CreatedOn>
  <Id>1</Id>
  <ImagePath>sample string 9</ImagePath>
  <Name>sample string 8</Name>
  <ProdQty>11</ProdQty>
  <Products>
    <Products>
      <Id>1</Id>
      <ImagePath>sample string 3</ImagePath>
      <Name>sample string 2</Name>
      <ProdQty>4</ProdQty>
    </Products>
    <Products>
      <Id>1</Id>
      <ImagePath>sample string 3</ImagePath>
      <Name>sample string 2</Name>
      <ProdQty>4</ProdQty>
    </Products>
  </Products>
  <SOType>sample string 7</SOType>
  <Status>sample string 3</Status>
  <TotalAmt>5.1</TotalAmt>
  <UserId>2</UserId>
</OrderStockListModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.