GET
api/v1/GetCategoryList?clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId | integer |
Required |
Response Information
Description:
Return type: Collection of SellerRegisterProductCategory
Response Formats
application/json, text/json
[
{
"ClientId": 1,
"BPCode": "sample string 2",
"CategoryMasterId": 3,
"MainCategory": "sample string 4",
"OtherCategory": "sample string 5",
"IsChecked": true
},
{
"ClientId": 1,
"BPCode": "sample string 2",
"CategoryMasterId": 3,
"MainCategory": "sample string 4",
"OtherCategory": "sample string 5",
"IsChecked": true
}
]
text/html
[{"ClientId":1,"BPCode":"sample string 2","CategoryMasterId":3,"MainCategory":"sample string 4","OtherCategory":"sample string 5","IsChecked":true},{"ClientId":1,"BPCode":"sample string 2","CategoryMasterId":3,"MainCategory":"sample string 4","OtherCategory":"sample string 5","IsChecked":true}]
application/xml, text/xml
<ArrayOfSellerRegisterProductCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Seller">
<SellerRegisterProductCategory>
<BPCode>sample string 2</BPCode>
<CategoryMasterId>3</CategoryMasterId>
<ClientId>1</ClientId>
<IsChecked>true</IsChecked>
<MainCategory>sample string 4</MainCategory>
<OtherCategory>sample string 5</OtherCategory>
</SellerRegisterProductCategory>
<SellerRegisterProductCategory>
<BPCode>sample string 2</BPCode>
<CategoryMasterId>3</CategoryMasterId>
<ClientId>1</ClientId>
<IsChecked>true</IsChecked>
<MainCategory>sample string 4</MainCategory>
<OtherCategory>sample string 5</OtherCategory>
</SellerRegisterProductCategory>
</ArrayOfSellerRegisterProductCategory>
