POST catalog/product/update
Authorized only.
Request Information
URI Parameters
None.
Body Parameters
ApiProductUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ProductId | integer |
None. |
|
| AvailableOnline | boolean |
None. |
|
| AvailableOnRegister | boolean |
None. |
|
| Quantity | decimal number |
None. |
|
| Price | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"ProductId": 1,
"AvailableOnline": true,
"AvailableOnRegister": true,
"Quantity": 1.0,
"Price": 1.0
}
application/xml, text/xml
Sample:
<ApiProductUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IConnect.Domain.Mobile.Api.Requests"> <AvailableOnRegister>true</AvailableOnRegister> <AvailableOnline>true</AvailableOnline> <Price>1</Price> <ProductId>1</ProductId> <Quantity>1</Quantity> </ApiProductUpdateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |