Open this page in the API Guide

HierarchyEntityController.ConfigureAttributeHierarchies Method

Configures the attribute hierarchies associated with the specified hierarchy.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpPostAttribute("ConfigureAttributes/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<HierarchyData>> ConfigureAttributeHierarchies(
	Guid id,
	[FromBodyAttribute] ConfigureAttributeHierarchiesOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The entity ID to configure.
options
Type: Dundas.BI.WebApi.Models.ConfigureAttributeHierarchiesOptions
The list of ConfigureAttributeHierarchiesOptions.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<IList<HierarchyData>>
The operation completed successfully. The payload contains an array of HierarchyEntityData or a HierarchyData object containing the updated hierarchy.
See Also