CustomAttributesControllerGetEffectiveValuesForAccount 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: SystemGuid
The account ID.
tenantId (Optional)
Type: SystemNullableGuid
The ID of the tenant to use when computing the effective values, or 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: SystemNullableGuid
The current session ID.

Return Value

Type: ActionResultIListCustomAttributeData
The operation completed successfully. The payload contains an array of CustomAttributeData objects.
See Also