DataInputController.GetContextualMeasureValue Method |
Gets a contextual measure value by ID.
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("ContextualMeasureValue/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<ContextualValueData> GetContextualMeasureValue(
Guid id,
Guid metricSetId,
Guid? sessionId = null
)
<HttpGetAttribute("ContextualMeasureValue/{id}")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function GetContextualMeasureValue (
id As Guid,
metricSetId As Guid,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of ContextualValueData)
public:
[HttpGetAttribute(L"ContextualMeasureValue/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult<ContextualValueData^>^ GetContextualMeasureValue(
Guid id,
Guid metricSetId,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute("ContextualMeasureValue/{id}")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member GetContextualMeasureValue :
id : Guid *
metricSetId : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<ContextualValueData>
Parameters
- id
- Type: System.Guid
The ID of the contextual measure value to get. - metricSetId
- Type: System.Guid
The metric set ID. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<ContextualValueData>The operation completed successfully. The payload contains a
ContextualValueData object containing the contextual value data.
See Also