POST api/products/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
ProductOverviewDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| LocalName | string |
None. |
|
| IsActive | boolean |
None. |
|
| ImageId | string |
None. |
|
| IsOutOfStock | boolean |
None. |
|
| ShortUnique | string |
None. |
|
| Price | PriceDto |
None. |
|
| RefPrice | PriceDto |
None. |
|
| MovieId | string |
None. |
|
| Color | string |
None. |
|
| Created | date |
None. |
|
| Updated | date |
None. |
|
| HumanReadableIdentity | string |
None. |
|
| CampaignPrice | PriceDto |
None. |
|
| HasCampaignPrice | boolean |
None. |
|
| Description | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "5fa58185-80c5-4f96-9be5-f031b95150d3",
"name": "sample string 1",
"localName": "sample string 2",
"isActive": true,
"imageId": "sample string 4",
"isOutOfStock": true,
"shortUnique": "sample string 6",
"price": {
"id": "9f4a27aa-2596-4323-b074-539beccf2515",
"amount": 1.0,
"currency": "sample string 2",
"productId": "2803993e-30c4-4713-a674-ebcbfd764115",
"symbol": "sample string 3",
"isSymbolBefore": true
},
"refPrice": {
"id": "9f4a27aa-2596-4323-b074-539beccf2515",
"amount": 1.0,
"currency": "sample string 2",
"productId": "2803993e-30c4-4713-a674-ebcbfd764115",
"symbol": "sample string 3",
"isSymbolBefore": true
},
"movieId": "sample string 7",
"color": "sample string 8",
"created": "2026-04-07T14:25:55.6557768+02:00",
"updated": "2026-04-07T14:25:55.6557768+02:00",
"humanReadableIdentity": "sample string 11",
"campaignPrice": {
"id": "9f4a27aa-2596-4323-b074-539beccf2515",
"amount": 1.0,
"currency": "sample string 2",
"productId": "2803993e-30c4-4713-a674-ebcbfd764115",
"symbol": "sample string 3",
"isSymbolBefore": true
},
"hasCampaignPrice": true,
"description": "sample string 12"
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.