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
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
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"
  }
]

Start the jobs with the given name. A job will only be started, if it is not already running.

post

Required Roles: ApiJobs

Authorizations
Query parameters
jobNamestringRequired
Responses
200

OK

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?