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": "f365c810-4bf2-48b5-9344-af20178e90fc",
"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.