POST api/OpenCart/MultiProduct

Request Information

URI Parameters

None.

Body Parameters

ProductIDListRequest
NameDescriptionTypeAdditional information
ProductIDs

Collection of ProductIDModel

None.

Request Formats

application/json, text/json

Sample:
{
  "ProductIDs": [
    {
      "ID": 1
    },
    {
      "ID": 1
    }
  ]
}

application/xml, text/xml

Sample:
<ProductIDListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
  <ProductIDs>
    <ProductIDModel>
      <ID>1</ID>
    </ProductIDModel>
    <ProductIDModel>
      <ID>1</ID>
    </ProductIDModel>
  </ProductIDs>
</ProductIDListRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseDetail
NameDescriptionTypeAdditional information
ResponseCode

integer

None.

ResponseText

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseText": "sample string 2"
}

application/xml, text/xml

Sample:
<ResponseDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">
  <ResponseCode>1</ResponseCode>
  <ResponseText>sample string 2</ResponseText>
</ResponseDetail>