Open this page in the API Guide

ApplicationConfigurationController.GetSetValueForSetting Method

Gets the set value for a specific setting and scope/scope target.

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("GetSetValueForSetting")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<AppSettingValueData> GetSetValueForSetting(
	[FromBodyAttribute] ConfigValueOptions options,
	Guid? sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.Models.ConfigValueOptions
A ConfigValueOptions object that carries the needed information about the setting to be retrieved.
sessionId (Optional)
Type: System.Nullable<Guid>
ID of the current session.

Return Value

Type: ActionResult<AppSettingValueData>
The operation completed successfully. The payload contains an AppSettingValueData object.
See Also