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
)
<HttpPostAttribute("GetData")>
<ProducesResponseTypeAttribute(440)>
<ProducesResponseTypeAttribute(500)>
<ProducesResponseTypeAttribute(503)>
Public Function GetData (
<FromBodyAttribute> options As DataRequestData(),
Optional sessionId As Guid? = Nothing
) As Task(Of ActionResult(Of IList(Of DataResultData)))
public:
[HttpPostAttribute(L"GetData")]
[ProducesResponseTypeAttribute(440)]
[ProducesResponseTypeAttribute(500)]
[ProducesResponseTypeAttribute(503)]
Task<ActionResult<IList<DataResultData^>^>^>^ GetData(
[FromBodyAttribute] array<DataRequestData^>^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("GetData")>]
[<ProducesResponseTypeAttribute(440)>]
[<ProducesResponseTypeAttribute(500)>]
[<ProducesResponseTypeAttribute(503)>]
member GetData :
[<FromBodyAttribute>] options : DataRequestData[] *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> Task<ActionResult<IList<DataResultData>>>
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