POST product/addcustomcheckbox
This method is used to add a custom check box value for a product. For further info refer to the documentation provided by webigence
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| productCustomCheckBox | 1) ProductCode: Code to identify the product
2) DisplayOrder: Custom check box number
3) IsChecked |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"ProductCode": "sample string 1",
"DisplayOrder": 64,
"ProductId": 3,
"IsChecked": true
}
application/xml, text/xml
Sample:
<ProductCustomCheckBoxModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webi.Api2.Models"> <DisplayOrder>64</DisplayOrder> <IsChecked>true</IsChecked> <ProductCode>sample string 1</ProductCode> <ProductId>3</ProductId> </ProductCustomCheckBoxModel>
application/x-www-form-urlencoded
Sample:
Sample not available.