Open this page in the API Guide

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
)

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