Open this page in the API Guide

HierarchyController.MemberQuery Method

Queries the specified hierarchy for the members.

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("MemberQuery/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public Task<ActionResult<IList<HierarchyMemberData>>> MemberQuery(
	Guid id,
	[FromBodyAttribute] QueryHierarchyMembersOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the hierarchy or its parent entity.
options
Type: Dundas.BI.WebApi.Models.QueryHierarchyMembersOptions
The options to get the members.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: Task<ActionResult<IList<HierarchyMemberData>>>
The operation completed successfully. The payload contains an array of HierarchyMemberData objects containing the members.
See Also