Open this page in the API Guide

GroupController.GetGroupMembershipForGroup Method

Note: This API is now obsolete.

OBSOLETE - Use POST /Group/GetMemberOf/ instead. Gets the groups that a group is a member of.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax
[ObsoleteAttribute("Deprecated. Use GetMemberOf instead.")]
[HttpGetAttribute("GroupMembership/{id}")]
public ActionResult<GroupData[]> GetGroupMembershipForGroup(
	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 groups are included.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<GroupData[]>
An array of GroupData objects, or a status code indicating the problem.
See Also