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 (8.0.2.1001)
Syntax
[HttpPutAttribute]
[ActionNameAttribute("Index")]
public HttpResponseMessage UpdateNotification(
	Guid id,
	[FromBodyAttribute] SaveNotificationOptions options,
	Nullable<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: HttpResponseMessage
The updated NotificationData object, or a status code indicating the problem.
See Also