POST Tariff/ComponentProductPrices
Get all the prices associated to a ComponentProduct
Request Information
URI Parameters
None.
Body Parameters
GetComponentProductPrices| Name | Description | Type | Additional information |
|---|---|---|---|
| ComponentProductID | integer |
None. |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ComponentProductID": 1,
"Lang": "sample string 2",
"StoreID": 3
}
application/xml, text/xml
Sample:
<GetComponentProductPrices 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> <ComponentProductID>1</ComponentProductID> </GetComponentProductPrices>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of ItemPrice| Name | Description | Type | Additional 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-06T09:15:27.6169916+01:00",
"Modified": "2025-12-06T09:15:27.6169916+01:00",
"ItemID": 4,
"TariffID": 5,
"Disabled": "2025-12-06T09:15:27.6169916+01:00",
"Amount": 6.0
},
{
"ID": 1,
"Created": "2025-12-06T09:15:27.6169916+01:00",
"Modified": "2025-12-06T09:15:27.6169916+01:00",
"ItemID": 4,
"TariffID": 5,
"Disabled": "2025-12-06T09:15:27.6169916+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-06T09:15:27.6169916+01:00</Created>
<Disabled>2025-12-06T09:15:27.6169916+01:00</Disabled>
<ID>1</ID>
<ItemID>4</ItemID>
<Modified>2025-12-06T09:15:27.6169916+01:00</Modified>
<TariffID>5</TariffID>
</ItemPrice>
<ItemPrice>
<Amount>6</Amount>
<Created>2025-12-06T09:15:27.6169916+01:00</Created>
<Disabled>2025-12-06T09:15:27.6169916+01:00</Disabled>
<ID>1</ID>
<ItemID>4</ItemID>
<Modified>2025-12-06T09:15:27.6169916+01:00</Modified>
<TariffID>5</TariffID>
</ItemPrice>
</ArrayOfItemPrice>