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. |
|
| Active | boolean |
None. |
|
| ImageId | string |
None. |
|
| IsOutOfStock | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "4a47e9ae-ce8e-47f5-ab0d-1b62b6771f23",
"name": "sample string 1",
"active": true,
"imageId": "sample string 3",
"isOutOfStock": true
}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.