JobController.GetLatestJobRunEventForJobs Method |
Gets the latest job run events for the specified jobs.
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("GetLatestJobRunEventForJobs")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<JobRunEventData>> GetLatestJobRunEventForJobs(
[FromBodyAttribute] IList<Guid> jobIds,
Guid? sessionId = null
)
<HttpPostAttribute("GetLatestJobRunEventForJobs")>
<ProducesResponseTypeAttribute(403)>
<ProducesResponseTypeAttribute(440)>
Public Function GetLatestJobRunEventForJobs (
<FromBodyAttribute> jobIds As IList(Of Guid),
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of JobRunEventData))
public:
[HttpPostAttribute(L"GetLatestJobRunEventForJobs")]
[ProducesResponseTypeAttribute(403)]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<JobRunEventData^>^>^ GetLatestJobRunEventForJobs(
[FromBodyAttribute] IList<Guid>^ jobIds,
Nullable<Guid> sessionId = nullptr
)
[<HttpPostAttribute("GetLatestJobRunEventForJobs")>]
[<ProducesResponseTypeAttribute(403)>]
[<ProducesResponseTypeAttribute(440)>]
member GetLatestJobRunEventForJobs :
[<FromBodyAttribute>] jobIds : IList<Guid> *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<JobRunEventData>>
Parameters
- jobIds
- Type: System.Collections.Generic.IList<Guid>
The list of job IDs. - sessionId (Optional)
- Type: System.Nullable<Guid>
Current session ID.
Return Value
Type:
ActionResult<IList<JobRunEventData>>The operation completed successfully. The payload contains an array of
JobRunEventData objects.
See Also