Open this page in the API Guide

HierarchyController.GetPreviousMember Method

Gets the previous hierarchy level member sibling.

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("PreviousMember/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<HierarchyMemberData> GetPreviousMember(
	Guid id,
	[FromBodyAttribute] GetHierarchyMemberOptions getMemberOptions,
	Guid? sessionId = null
)

Parameters

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

Return Value

Type: ActionResult<HierarchyMemberData>
The operation completed successfully. The payload contains a HierarchyMemberData object.
See Also