POST
api/v1/get-category-subcategory-list?clientId={clientId}&sellerId={sellerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId | integer |
Required |
|
| sellerId | integer |
Required |
Response Information
Description:
Return type: Collection of CategoryAndSubCategoryList
Response Formats
application/json, text/json
[
{
"ParentCategoryId": 1,
"ParentCategoryName": "sample string 2",
"SubCategoryId": 3,
"SubCategoryName": "sample string 4"
},
{
"ParentCategoryId": 1,
"ParentCategoryName": "sample string 2",
"SubCategoryId": 3,
"SubCategoryName": "sample string 4"
}
]
text/html
[{"ParentCategoryId":1,"ParentCategoryName":"sample string 2","SubCategoryId":3,"SubCategoryName":"sample string 4"},{"ParentCategoryId":1,"ParentCategoryName":"sample string 2","SubCategoryId":3,"SubCategoryName":"sample string 4"}]
application/xml, text/xml
<ArrayOfCategoryAndSubCategoryList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.RequestOperations.Category">
<CategoryAndSubCategoryList>
<ParentCategoryId>1</ParentCategoryId>
<ParentCategoryName>sample string 2</ParentCategoryName>
<SubCategoryId>3</SubCategoryId>
<SubCategoryName>sample string 4</SubCategoryName>
</CategoryAndSubCategoryList>
<CategoryAndSubCategoryList>
<ParentCategoryId>1</ParentCategoryId>
<ParentCategoryName>sample string 2</ParentCategoryName>
<SubCategoryId>3</SubCategoryId>
<SubCategoryName>sample string 4</SubCategoryName>
</CategoryAndSubCategoryList>
</ArrayOfCategoryAndSubCategoryList>
