ApplicationConfigurationControllerSetConfigValue Method

PUT /ApplicationConfiguration/ Set an application setting value.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (9.0.0.1000)
Syntax
[HttpPutAttribute]
[ActionNameAttribute("Index")]
public HttpResponseMessage SetConfigValue(
	[FromBodyAttribute] ConfigValueOptions options,
	Nullable<Guid> sessionId = null
)

Parameters

options
Type: Dundas.BI.WebApi.ModelsConfigValueOptions
An object that carries all needed information about the setting values that needs to be set.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: HttpResponseMessage
A status code indicating whether there was an error setting the value. If the value was successfully set, but testing it yielded a warning, the warning will be returned as a String.
See Also