JobControllerGetLatestJobRunEventForJobs 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.3.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.GenericIListGuid
The list of job IDs.
sessionId (Optional)
Type: SystemNullableGuid
Current session ID.

Return Value

Type: ActionResultIListJobRunEventData
The operation completed successfully. The payload contains an array of JobRunEventData objects.
See Also