POST Tariff/ComponentClassificationPrices

Get all the prices associated to a ComponentClassification

Request Information

URI Parameters

None.

Body Parameters

GetComponentClassificationPrices
NameDescriptionTypeAdditional information
ComponentClassificationID

integer

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ComponentClassificationID": 1,
  "Lang": "sample string 2",
  "StoreID": 3
}

application/xml, text/xml

Sample:
<GetComponentClassificationPrices xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Tariff">
  <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 2</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">3</StoreID>
  <ComponentClassificationID>1</ComponentClassificationID>
</GetComponentClassificationPrices>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of ItemPrice
NameDescriptionTypeAdditional information
ID

integer

None.

Created

date

None.

Modified

date

None.

ItemID

ProductID, VariationID, ComponentID...

integer

None.

TariffID

integer

None.

Disabled

date

None.

Amount

Price without tax

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Created": "2025-12-06T05:42:39.1905206+01:00",
    "Modified": "2025-12-06T05:42:39.1905206+01:00",
    "ItemID": 4,
    "TariffID": 5,
    "Disabled": "2025-12-06T05:42:39.1905206+01:00",
    "Amount": 6.0
  },
  {
    "ID": 1,
    "Created": "2025-12-06T05:42:39.1905206+01:00",
    "Modified": "2025-12-06T05:42:39.1905206+01:00",
    "ItemID": 4,
    "TariffID": 5,
    "Disabled": "2025-12-06T05:42:39.1905206+01:00",
    "Amount": 6.0
  }
]

application/xml, text/xml

Sample:
<ArrayOfItemPrice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Tariff">
  <ItemPrice>
    <Amount>6</Amount>
    <Created>2025-12-06T05:42:39.1905206+01:00</Created>
    <Disabled>2025-12-06T05:42:39.1905206+01:00</Disabled>
    <ID>1</ID>
    <ItemID>4</ItemID>
    <Modified>2025-12-06T05:42:39.1905206+01:00</Modified>
    <TariffID>5</TariffID>
  </ItemPrice>
  <ItemPrice>
    <Amount>6</Amount>
    <Created>2025-12-06T05:42:39.1905206+01:00</Created>
    <Disabled>2025-12-06T05:42:39.1905206+01:00</Disabled>
    <ID>1</ID>
    <ItemID>4</ItemID>
    <Modified>2025-12-06T05:42:39.1905206+01:00</Modified>
    <TariffID>5</TariffID>
  </ItemPrice>
</ArrayOfItemPrice>