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

Return Value

Type: ActionResultGroupData
An array of GroupData objects, or a status code indicating the problem.
See Also