JobControllerRunJob2 Method

POST /Job/Run2/{id} Runs a job using provided options.

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntax
[HttpPostAttribute]
[ActionNameAttribute("Run2")]
public IActionResult RunJob2(
	Guid id,
	[FromBodyAttribute] RunJobsOptions options,
	Guid? sessionId = null
)

Parameters

id
Type: SystemGuid
ID of the job to run.
options
Type: Dundas.BI.WebApi.ModelsRunJobsOptions
An object that carries all needed information about the jobs that need to be run.
sessionId (Optional)
Type: SystemNullableGuid
ID of the current session.

Return Value

Type: IActionResult
The Int64 ID of the job run, or a status code indicating the problem.
See Also