Open this page in the API Guide

DataRetrievalController.GetData Method

Gets the data for the specified objects with the specified settings.

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("GetData")]
[ProducesResponseTypeAttribute(440)]
[ProducesResponseTypeAttribute(500)]
[ProducesResponseTypeAttribute(503)]
public Task<ActionResult<IList<DataResultData>>> GetData(
	[FromBodyAttribute] DataRequestData[] options,
	Guid? sessionId = null
)

Parameters

options
Type:Dundas.BI.WebApi.Models.DataRequestData[]
The options for how to retrieve the data.
sessionId (Optional)
Type: System.Nullable<Guid>
ID of the session.

Return Value

Type: Task<ActionResult<IList<DataResultData>>>
The operation completed successfully. The payload contains an array of DataResultData objects.
See Also