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