POST api/v1/productgroup/specialprices?priceGroup={priceGroup}
JOS: ADD COMMENTS
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| priceGroup | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SpecialPriceItem| Name | Description | Type | Additional information |
|---|---|---|---|
| AmountOfUnits |
The amount of units this item is starting with |
integer |
None. |
| Price |
Price for this amount of units |
decimal number |
None. |
| IsCompletePrice |
Is the price the same for each amount above the amoutn of units? |
boolean |
None. |
| ValidFrom |
When can the price be used. Start date of period |
date |
None. |
| ValidTill |
When can the price be used. End date of period |
date |
None. |
| VariationIdentifier |
Identifier of the variation the price is for |
globally unique identifier |
None. |
| ProductIdentifier |
Identifier of the product the variation belongs to |
globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"AmountOfUnits": 1,
"Price": 2.0,
"IsCompletePrice": true,
"ValidFrom": "2026-09-27T06:52:16.7241361+00:00",
"ValidTill": "2026-09-27T06:52:16.7241361+00:00",
"VariationIdentifier": "273216cd-03c5-44e9-90a8-f0b9a23b5b35",
"ProductIdentifier": "51a46e18-bc3e-4729-afdf-5680f8a3b84a"
},
{
"AmountOfUnits": 1,
"Price": 2.0,
"IsCompletePrice": true,
"ValidFrom": "2026-09-27T06:52:16.7241361+00:00",
"ValidTill": "2026-09-27T06:52:16.7241361+00:00",
"VariationIdentifier": "273216cd-03c5-44e9-90a8-f0b9a23b5b35",
"ProductIdentifier": "51a46e18-bc3e-4729-afdf-5680f8a3b84a"
}
]
application/xml, text/xml
Sample:
<ArrayOfSpecialPriceItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Promidata.PromotionalOffice.Webservice.Contracts">
<SpecialPriceItem>
<AmountOfUnits>1</AmountOfUnits>
<IsCompletePrice>true</IsCompletePrice>
<Price>2</Price>
<ProductIdentifier>51a46e18-bc3e-4729-afdf-5680f8a3b84a</ProductIdentifier>
<ValidFrom>2026-09-27T06:52:16.7241361+00:00</ValidFrom>
<ValidTill>2026-09-27T06:52:16.7241361+00:00</ValidTill>
<VariationIdentifier>273216cd-03c5-44e9-90a8-f0b9a23b5b35</VariationIdentifier>
</SpecialPriceItem>
<SpecialPriceItem>
<AmountOfUnits>1</AmountOfUnits>
<IsCompletePrice>true</IsCompletePrice>
<Price>2</Price>
<ProductIdentifier>51a46e18-bc3e-4729-afdf-5680f8a3b84a</ProductIdentifier>
<ValidFrom>2026-09-27T06:52:16.7241361+00:00</ValidFrom>
<ValidTill>2026-09-27T06:52:16.7241361+00:00</ValidTill>
<VariationIdentifier>273216cd-03c5-44e9-90a8-f0b9a23b5b35</VariationIdentifier>
</SpecialPriceItem>
</ArrayOfSpecialPriceItem>