Open this page in the API Guide

GroupController Class

The REST API for performing administration tasks on a group.
Inheritance Hierarchy
System.Object
  Microsoft.AspNetCore.Mvc.ControllerBase
    Dundas.BI.WebApi.Controllers.ApiControllerBase
      Dundas.BI.WebApi.Controllers.GroupController

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
public class GroupController : ApiControllerBase

The GroupController type exposes the following members.

Constructors
  NameDescription
Public methodGroupController
Initializes a new instance of the GroupController class
Top
Methods
  NameDescription
Public methodAddMembers
Add Members to a group.
Public methodAddMemberToGroups
Adds a member from a series of groups.
Public methodCreateGroup
Creates a group.
Public methodDeleteGroup
Deletes a group.
Protected methodEnsureCallerContext
If the current context is not already the specified context, creates a new caller context which is a clone of the specified context and sets it as the current one.
(Inherited from ApiControllerBase.)
Protected methodEnsureFormFileMultipartContent
Ensures when form files are access the content is MIME multi-part which we want.
(Inherited from ApiControllerBase.)
Protected methodGetClientIdFromCookieOrProvided
Gets the client ID from cookie or from the provided value, which is usually from the query string.
(Inherited from ApiControllerBase.)
Public methodGetGroupById
Gets a group.
Public methodGetGroupInfoById
Gets a group info.
Public methodGetGroupMembershipForAccount Obsolete.
OBSOLETE - Use POST /Group/GetMemberOf/ instead. Gets the groups that an account is a member of.
Public methodGetGroupMembershipForGroup Obsolete.
OBSOLETE - Use POST /Group/GetMemberOf/ instead. Gets the groups that a group is a member of.
Public methodGetMemberOf
Gets the groups that the account/group is a member of.
Public methodGetMembers
Gets the accounts/groups that belong to the group.
Protected methodGetService<T>
Gets the requested service.
(Inherited from ApiControllerBase.)
Protected methodGetSessionIdFromCookieHeaderOrProvided
Gets the session ID from cookie, the authorization header or from the provided value, which is usually from the query string.
(Inherited from ApiControllerBase.)
Protected methodLoadSession
Creates a new caller context associated with the specified session ID. The session is not validated.
(Inherited from ApiControllerBase.)
Public methodQueryGroupInfos
Gets limited information about the groups with the given information.
Public methodQueryGroups
Gets the groups with the given information.
Public methodQueryNumberOfGroups
Gets the number of groups that match the filter.
Public methodRemoveMemberFromGroups
Removes a member from a series of groups.
Public methodRemoveMembers
Remove Members to a group.
Protected methodRequestFirstFormFile
Retrieves the first form file from the request.
(Inherited from ApiControllerBase.)
Protected methodRequestFormFiles
Retrieves the form files from the request.
(Inherited from ApiControllerBase.)
Protected methodReturnInvalidWindowsIdentityResponse
Returns the invalid windows identity response to challenge the browser.
(Inherited from ApiControllerBase.)
Public methodUpdateCustomAttributesForGroup
Updates the custom attributes for the specified group.
Public methodUpdateGroup
Updates a group.
Top
See Also