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
)
<HttpGetAttribute("GetMembers/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(404)>
<ProducesResponseTypeAttribute(440)>
Public Function GetMembers (
id As Guid,
includeInherited As Boolean,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of Object())
public:
[HttpGetAttribute(L"GetMembers/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
ActionResult<array<Object^>^>^ GetMembers(
Guid id,
bool includeInherited,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("GetMembers/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(404)>]
[<ProducesResponseTypeAttribute(440)>]
member GetMembers :
id : Guid *
includeInherited : bool *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<Object[]>
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