NotificationControllerUpdateNotification Method

PUT /Notification/{id} Updates a notification.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax
[HttpPutAttribute]
[ActionNameAttribute("Index")]
public IActionResult UpdateNotification(
	Guid id,
	[FromBodyAttribute] SaveNotificationOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
The notification ID.
options
Type: Dundas.BI.WebApi.ModelsSaveNotificationOptions
The notification options.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: IActionResult
The updated NotificationData object, or a status code indicating the problem.
See Also