Open this page in the API Guide

GroupController.GetMembers Method

Gets the accounts/groups that belong to the group.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[HttpGetAttribute("GetMembers/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<Object[]> GetMembers(
	Guid id,
	bool includeInherited,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the group which data is requested.
includeInherited
Type: System.Boolean
If set to true, then inherited members are included.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<Object[]>
The operation completed successfully. The payload contains an array of Object objects representing an array of arrays, with each index containing an array of MemberInfoData objects.
Remarks
Index 0 of the result is an array of MemberInfoData objects for the accounts belonging to the group. Index 1 of the result is an array of MemberInfoData objects for the groups belonging to the group.
See Also