GET api/v1/get-all-other-categories?AdminMemberId={AdminMemberId}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
AdminMemberId

integer

Required

Response Information

Description:

Return type: Collection of ViewSellerCategory

Response Formats
[
  {
    "SortOrder": 1,
    "DisplayName": "sample string 2",
    "ParentCatId": 3,
    "CatMasterId": 4
  },
  {
    "SortOrder": 1,
    "DisplayName": "sample string 2",
    "ParentCatId": 3,
    "CatMasterId": 4
  }
]
[{"SortOrder":1,"DisplayName":"sample string 2","ParentCatId":3,"CatMasterId":4},{"SortOrder":1,"DisplayName":"sample string 2","ParentCatId":3,"CatMasterId":4}]
<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>