Delete job
delete
/iam/governance/selfservice/api/v1/scheduler/jobs/{jobName}
Deletes a job from the scheduler.
Request
Path Parameters
-
jobName: string
Name of the job
Response
Supported Media Types
- application/json
200 Response
OK
Root Schema : Success
Type:
Show Source
object
-
jobName(optional):
string
-
status(optional):
string
Status of the executed action
400 Response
Invalid input
Examples
The following example shows how to delete a job from the scheduler by submitting the DEL request using cURL. The information shown here is against a pseudo system and serves as a prototype.
cURL Example
curl -i -X DELETE -u username:password / --header 'Accept: application/json' / --header 'X-Requested-By: <anyvalue>' / 'http://pseudo.com/iam/governance/selfservice/api/v1/scheduler/jobs/Test Job'
Example of Response Body
The following example shows the JSON response for a deletion request of a job from the scheduler:
{ "jobName": "Test Job", "status": "Job Deleted" }