GET
api/v1/get-all-other-categories?AdminMemberId={AdminMemberId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| AdminMemberId | integer |
Required |
Response Information
Description:
Return type: Collection of ViewSellerCategory
Response Formats
application/json, text/json
[
{
"SortOrder": 1,
"DisplayName": "sample string 2",
"ParentCatId": 3,
"CatMasterId": 4
},
{
"SortOrder": 1,
"DisplayName": "sample string 2",
"ParentCatId": 3,
"CatMasterId": 4
}
]
text/html
[{"SortOrder":1,"DisplayName":"sample string 2","ParentCatId":3,"CatMasterId":4},{"SortOrder":1,"DisplayName":"sample string 2","ParentCatId":3,"CatMasterId":4}]
application/xml, text/xml
<ArrayOfViewSellerCategory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Seller">
<ViewSellerCategory>
<CatMasterId>4</CatMasterId>
<DisplayName>sample string 2</DisplayName>
<ParentCatId>3</ParentCatId>
<SortOrder>1</SortOrder>
</ViewSellerCategory>
<ViewSellerCategory>
<CatMasterId>4</CatMasterId>
<DisplayName>sample string 2</DisplayName>
<ParentCatId>3</ParentCatId>
<SortOrder>1</SortOrder>
</ViewSellerCategory>
</ArrayOfViewSellerCategory>
