MetricSetController.GetMetricSetsByIds Method |
Gets a metric set.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpPostAttribute("GetByIds")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<MetricSetData>> GetMetricSetsByIds(
[FromBodyAttribute] Guid[] entryIds,
Guid? sessionId = null
)
<HttpPostAttribute("GetByIds")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(409)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function GetMetricSetsByIds (
<FromBodyAttribute> entryIds As Guid(),
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of MetricSetData))
public:
[HttpPostAttribute(L"GetByIds")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(409)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<MetricSetData^>^>^ GetMetricSetsByIds(
[FromBodyAttribute] array<Guid>^ entryIds,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("GetByIds")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(409)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member GetMetricSetsByIds :
[<FromBodyAttribute>] entryIds : Guid[] *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<MetricSetData>>
Parameters
- entryIds
- Type:System.Guid[]
The IDs of the metric sets to get. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<IList<MetricSetData>>The operation completed successfully. The payload contains an array of
MetricSetData objects.
See Also