Open this page in the API Guide

CustomAttributesController.GetEffectiveValuesForAccount Method

Gets the effective custom attribute values for the 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("GetEffectiveValuesForAccount/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<CustomAttributeData>> GetEffectiveValuesForAccount(
	Guid id,
	Guid? tenantId = null,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The account ID.
tenantId (Optional)
Type: System.Nullable<Guid>
The ID of the tenant to use when computing the effective values, or null to indicate that no tenant should be considered. If not specified, the tenant corresponding to the caller's session will be used.
sessionId (Optional)
Type: System.Nullable<Guid>
The current session ID.

Return Value

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