POST Report/GetPharmacyStock

Request Information

URI Parameters

None.

Body Parameters

PharmacyStockInput
NameDescriptionTypeAdditional information
facilityCode

string

None.

stockInput

Collection of StockInput

None.

Request Formats

application/json, text/json

Sample:
{
  "facilityCode": "sample string 1",
  "stockInput": [
    {
      "itemId": 1,
      "storeId": 2,
      "itemType": "sample string 3"
    },
    {
      "itemId": 1,
      "storeId": 2,
      "itemType": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<PharmacyStockInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ReportURLAPI.Class">
  <facilityCode>sample string 1</facilityCode>
  <stockInput>
    <StockInput>
      <itemId>1</itemId>
      <itemType>sample string 3</itemType>
      <storeId>2</storeId>
    </StockInput>
    <StockInput>
      <itemId>1</itemId>
      <itemType>sample string 3</itemType>
      <storeId>2</storeId>
    </StockInput>
  </stockInput>
</PharmacyStockInput>

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.