NotificationController.RunNotifications Method |
Runs multiple notifications.
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("Run")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
public ActionResult RunNotifications(
[FromBodyAttribute] IList<Guid> notificationIds,
Guid? sessionId = null
)
<HttpPostAttribute("Run")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(410)>
<ProducesResponseTypeAttribute(440)>
Public Function RunNotifications (
<FromBodyAttribute> notificationIds As IList(Of Guid),
Optional sessionId As Guid? = Nothing
) As ActionResult
public:
[HttpPostAttribute(L"Run")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(410)]
[ProducesResponseTypeAttribute(440)]
ActionResult^ RunNotifications(
[FromBodyAttribute] IList<Guid>^ notificationIds,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("Run")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(410)>]
[<ProducesResponseTypeAttribute(440)>]
member RunNotifications :
[<FromBodyAttribute>] notificationIds : IList<Guid> *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult
Parameters
- notificationIds
- Type: System.Collections.Generic.IList<Guid>
A collection of notification IDs . - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult
See Also