Open this page in the API Guide

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
)

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