NotificationController.QueryNotificationInfos Method |
Gets basic information about 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("QueryInfos")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<NotificationInfoData>> QueryNotificationInfos(
[FromBodyAttribute] QueryNotificationOptions options,
Guid? sessionId = null
)
<HttpPostAttribute("QueryInfos")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(405)>
<ProducesResponseTypeAttribute(440)>
Public Function QueryNotificationInfos (
<FromBodyAttribute> options As QueryNotificationOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of NotificationInfoData))
public:
[HttpPostAttribute(L"QueryInfos")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(405)]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<NotificationInfoData^>^>^ QueryNotificationInfos(
[FromBodyAttribute] QueryNotificationOptions^ options,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("QueryInfos")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(405)>]
[<ProducesResponseTypeAttribute(440)>]
member QueryNotificationInfos :
[<FromBodyAttribute>] options : QueryNotificationOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<NotificationInfoData>>
Parameters
- options
- Type: Dundas.BI.WebApi.Models.QueryNotificationOptions
An object that carries all needed information about the notifications to be retrieved. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<IList<NotificationInfoData>>The operation completed successfully. The payload contains an array of
NotificationInfoData objects.
See Also