CategoryViewHandler
This class provides RESTful services to get category data for search-based catalog navigation. It performs the services by delegating to the CatalogNavigationView BOD service.
Method Name | HTTP Method | URL | Query Parameters | Description | Authentication | Example |
---|---|---|---|---|---|---|
findCategoryByUniqueId | GET | store/{storeId}/categoryview/byId/{categoryId} | responseFormat={responseFormat}orderBy={orderBy}. | Gets category details based on its unique ID. | No,HTTP | Sample |
findCategoryByIdentifier | GET | store/{storeId}/categoryview/{categoryIdentifier} | responseFormat={responseFormat}orderBy={orderBy}. | Gets category details based on its identifier. | No,HTTP | Sample |
findTopCategories | GET | store/{storeId}/categoryview/@top | responseFormat={responseFormat}depthAndLimit={listOfLimits}&orderBy={orderBy}. | Gets all top level categories. | No,HTTP | Sample |
findSubCategories | GET | store/{storeId}/categoryview/byParentCategory/{parentCategoryId} | responseFormat={responseFormat}depthAndLimit={listOfLimits}&orderBy={orderBy}. | Gets child categories based on the parent category unique ID. | No,HTTP | Sample |