GroupControllerGetMembers 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: SystemGuid
The ID of the group which data is requested.
includeInherited
Type: SystemBoolean
If set to , then inherited members are included.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: ActionResultObject
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