Execute job

post

/iam/governance/selfservice/api/v1/scheduler/jobs/{jobName}/run

Queues the job for manual execution.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : Success
Type: object
Show Source

400 Response

Invalid input
Back to Top

Examples

The following example shows how to execute a job by submitting the POST request using cURL. This POST request queues the job for manual execution. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

curl -i -X POST -u username:password \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'X-Requested-By: <anyvalue>' \
'http://pseudo.com/iam/governance/selfservice/api/v1/scheduler/jobs/Catalog Synchronization Job/run'

Example of Response Body

The following example shows the JSON respone for a request to execute a job:

{
    "jobName": "Catalog Synchronization Job",
    "status": "run successfull"
}
Back to Top