Jobs
Operations for jobs
Start the job with the given name and group name. The job will only be started, if it is not already running.
post
Required Roles: ApiJobs
Authorizations
Query parameters
jobGroupstringRequired
jobNamestringRequired
Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
500
Server Error
application/json
post
POST /fact-finder//rest/v5/jobs/startJob HTTP/1.1
Host: ng-demo.fact-finder.de
Authorization: Basic username:password
Accept: */*
[
{
"errorMessage": "text",
"jobGroup": "text",
"jobName": "text",
"status": "SUCCESS"
}
]
Start the jobs with the given group name. A job will only be started, if it is not already running.
post
Required Roles: ApiJobs
Authorizations
Query parameters
jobGroupstringRequired
Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
500
Server Error
application/json
post
POST /fact-finder//rest/v5/jobs/startJobsWithGroupName HTTP/1.1
Host: ng-demo.fact-finder.de
Authorization: Basic username:password
Accept: */*
[
{
"errorMessage": "text",
"jobGroup": "text",
"jobName": "text",
"status": "SUCCESS"
}
]
Required Roles: ApiJobs
Authorizations
Query parameters
jobNamestringRequired
Responses
200
OK
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
500
Server Error
application/json
post
POST /fact-finder//rest/v5/jobs/startJobsWithName HTTP/1.1
Host: ng-demo.fact-finder.de
Authorization: Basic username:password
Accept: */*
[
{
"errorMessage": "text",
"jobGroup": "text",
"jobName": "text",
"status": "SUCCESS"
}
]
Was this helpful?