POST api/BeneficiaryOther/SaveOrder?PharmacySecretUID={PharmacySecretUID}&StoreId={StoreId}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
PharmacySecretUID
No documentation available.

Define this parameter in the request URI.

StoreId
No documentation available.

Define this parameter in the request URI.

orderHeader
No documentation available.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "OTP": "sample string 1",
  "OrderNumber": "sample string 2",
  "NationalID": "sample string 3",
  "OrderLines": [
    {
      "ItemCode": "sample string 1",
      "Quantity": 2.0
    },
    {
      "ItemCode": "sample string 1",
      "Quantity": 2.0
    },
    {
      "ItemCode": "sample string 1",
      "Quantity": 2.0
    }
  ]
}

application/xml, text/xml

Sample:
<OrderHeader xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataLayer.Model">
  <NationalID>sample string 3</NationalID>
  <OTP>sample string 1</OTP>
  <OrderLines>
    <OrderLine>
      <ItemCode>sample string 1</ItemCode>
      <Quantity>2</Quantity>
    </OrderLine>
    <OrderLine>
      <ItemCode>sample string 1</ItemCode>
      <Quantity>2</Quantity>
    </OrderLine>
    <OrderLine>
      <ItemCode>sample string 1</ItemCode>
      <Quantity>2</Quantity>
    </OrderLine>
  </OrderLines>
  <OrderNumber>sample string 2</OrderNumber>
</OrderHeader>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:

Sample not available.