PUT request/supplier/{SupplierId}/brand/config
To update the supplier Filter configs(Include or Exclude) for a particular Supplier
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| SupplierId | integer |
Required |
Body Parameters
BrandSupplierConfigPut| Name | Description | Type | Additional information |
|---|---|---|---|
| BrandId | integer |
None. |
|
| Exclude | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"brandId": 1,
"exclude": true
}
text/html
Sample:
{"brandId":1,"exclude":true}
application/xml, text/xml
Sample:
<BrandSupplierConfigPut xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCSCommercialAPI.Models.SupplierDetails.ProductConfig"> <BrandId>1</BrandId> <Exclude>true</Exclude> </BrandSupplierConfigPut>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>