POST api/v1/get-category-subcategory-list?clientId={clientId}&sellerId={sellerId}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
clientId

integer

Required

sellerId

integer

Required

Response Information

Description:

Return type: Collection of CategoryAndSubCategoryList

Response Formats
[
  {
    "ParentCategoryId": 1,
    "ParentCategoryName": "sample string 2",
    "SubCategoryId": 3,
    "SubCategoryName": "sample string 4"
  },
  {
    "ParentCategoryId": 1,
    "ParentCategoryName": "sample string 2",
    "SubCategoryId": 3,
    "SubCategoryName": "sample string 4"
  }
]
[{"ParentCategoryId":1,"ParentCategoryName":"sample string 2","SubCategoryId":3,"SubCategoryName":"sample string 4"},{"ParentCategoryId":1,"ParentCategoryName":"sample string 2","SubCategoryId":3,"SubCategoryName":"sample string 4"}]
<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>