PUT Webshop/UpdateQtyWebshopUserProduct
Update het aantal van een WebshopUserProduct op een WebshopUserProductlijst.
Request Information
URI Parameters
None.
Body Parameters
WebshopUserProductUpdateQtyName | Description | Type | Additional information |
---|---|---|---|
WebshopUserProductId |
WebshopUserProductId |
integer |
None. |
Qty |
Aantal |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "WebshopUserProductId": 1, "Qty": 1 }
application/xml, text/xml
Sample:
<WebshopUserProductUpdateQty xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webware.Logic4.Classes.Models"> <Qty>1</Qty> <WebshopUserProductId>1</WebshopUserProductId> </WebshopUserProductUpdateQty>
Response Information
Resource Description
Logic4ResponseOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Value | boolean |
None. |
|
ValidationMessages |
Eventuele foutmeldingen |
Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Value": true, "ValidationMessages": [ "sample string 1", "sample string 2" ] }
application/xml, text/xml
Sample:
<Logic4ResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webware.Logic4.Classes.ResponseModels"> <ValidationMessages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </ValidationMessages> <Value>true</Value> </Logic4ResponseOfboolean>