Open this page in the API Guide

PrivilegeController.GetApplicationPrivilegesForAccount Method

Gets all the application privileges for a specified account.

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("AccountApplicationPrivileges/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<PrivilegeAssignmentData>> GetApplicationPrivilegesForAccount(
	Guid id,
	Guid? tenantId = null,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the account to get the privilege assignments for.
tenantId (Optional)
Type: System.Nullable<Guid>
The ID of the associated tenant.
sessionId (Optional)
Type: System.Nullable<Guid>
ID of the current session.

Return Value

Type: ActionResult<IList<PrivilegeAssignmentData>>
The operation completed successfully. The payload contains an array of PrivilegeAssignmentData objects.
See Also