POST api/products/{id}/locals
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
ProductLocalDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| CountryCode | string |
None. |
|
| Name | string |
None. |
|
| ImageId | string |
None. |
|
| MovieId | string |
None. |
|
| InternalNote | string |
None. |
|
| Description | string |
None. |
|
| IsActive | boolean |
None. |
|
| IsOutOfStock | boolean |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| Price | PriceDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "f70bcc5b-f50b-4bdf-acb3-83d2ff4f6448",
"countryCode": "sample string 1",
"name": "sample string 2",
"imageId": "sample string 3",
"movieId": "sample string 4",
"internalNote": "sample string 5",
"description": "sample string 6",
"isActive": true,
"isOutOfStock": true,
"productId": "09e37446-28b4-4be5-9fa8-78f32b9be71b",
"price": {
"id": "0b640bd5-d24e-4467-9f36-712e61bf2a2e",
"amount": 1.0,
"currency": "sample string 2",
"productId": "3d2c6f3f-42ea-431f-bca7-8f271b09b947",
"symbol": "sample string 3",
"isSymbolBefore": true
}
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.