Open this page in the API Guide

DataCubeController.CreateParameter Method

Creates a new parameter on the transform. Parameters for Output Element filtering or Transform setting can be created.

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("Parameter/{id}")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<ProcessParameterData> CreateParameter(
	Guid id,
	[FromBodyAttribute] ParameterOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: System.Guid
The ID of the data cube to create the parameter on.
options
Type: Dundas.BI.WebApi.Models.ParameterOptions
The options to build the warehouse.
sessionId (Optional)
Type: System.Nullable<Guid>
Current session ID.

Return Value

Type: ActionResult<ProcessParameterData>
The operation completed successfully. The payload contains a ProcessParameterData object.
See Also