POST Catalog/ProductTariffsByIDs

Gets tariff price for a group of Products

Request Information

URI Parameters

None.

Body Parameters

GetProductsRequest
NameDescriptionTypeAdditional information
ProductIDs

Collection of integer

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ProductIDs": [
    1,
    2
  ],
  "Lang": "sample string 1",
  "StoreID": 2
}

application/xml, text/xml

Sample:
<GetProductsRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.View.Catalog">
  <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Base">sample string 1</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Web.Models.Common.Base">2</StoreID>
  <ProductIDs xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </ProductIDs>
</GetProductsRequest>

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.