CategoryService
Getting the CategoryService instance
Section titled “Getting the CategoryService instance”CategoryService service = api.getCategoryService();Getting a list with the categories
Section titled “Getting a list with the categories”List<Category> categories = service.getCategories();Get the category by name
Section titled “Get the category by name”Category category = service.getCategoryByName("Category Name");Get a category Map<Category Name, Category Object>
Section titled “Get a category Map<Category Name, Category Object>”Map<String, Category> cMap = service.getCategoryMap();