JobController.GetLatestJobRunEvent Method |
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("GetLatestJobRunEvent")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<JobRunEventData> GetLatestJobRunEvent(
[FromBodyAttribute] long id,
Guid? sessionId = null
)
<HttpPostAttribute("GetLatestJobRunEvent")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(404)>
<ProducesResponseTypeAttribute(440)>
Public Function GetLatestJobRunEvent (
<FromBodyAttribute> id As Long,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of JobRunEventData)
public:
[HttpPostAttribute(L"GetLatestJobRunEvent")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(404)]
[ProducesResponseTypeAttribute(440)]
ActionResult<JobRunEventData^>^ GetLatestJobRunEvent(
[FromBodyAttribute] long long id,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("GetLatestJobRunEvent")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(404)>]
[<ProducesResponseTypeAttribute(440)>]
member GetLatestJobRunEvent :
[<FromBodyAttribute>] id : int64 *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<JobRunEventData>
Parameters
- id
- Type: System.Int64
The ID associated with the JobRun. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<JobRunEventData>The operation completed successfully. The payload contains a
JobRunEventData object.
See Also