Open this page in the API Guide

DataCubeController.AddSelectTransform Method

Adds a new select transform to the data cube.

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("SelectTransform")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
[ProducesResponseTypeAttribute(503)]
public ActionResult<DataCubeData> AddSelectTransform(
	[FromBodyAttribute] AddSelectTransformOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.AddSelectTransformOptions
The AddSelectTransformOptions required for adding a selection transform. If Native Object ID is Empty then a Manual Select transform will be added.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<DataCubeData>
The operation completed successfully. The payload contains a DataCubeData object containing the data cube data.
See Also