Conga Product Documentation

Welcome to the new doc site. Some of your old bookmarks will no longer work. Please use the search bar to find your desired topic.

download

Rebuilds the Category Hierarchy

This API is used to rebuilds the category hierarchy for the given list of hierarchy ids.

API

Signature

rebuildCategoryHierachies

WebService static void rebuildCategoryHierachies(List<ID> hierarchyIds)

Parameters

Name

Type

Required

Description

hierarchyIds

List<Id>

Yes

The list of hierarchy ids to rebuild.

Response Data

Void, doesn’t return any valueResponse

Code Sample

The following sample code retrieves the list of category records for the given category IDs, rebuilds the categories, and updates the data accordingly.

public void rebuildCategories(List<Id> categoryIds)
	{
        Apttus_CPQApi.CPQWebService.rebuildCategoryHierachies(categoryIds);
	}