Delete the trigger

delete

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

Deletes the trigger of a job.

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 delete the trigger of a job 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/Catalog Synchronization Job/trigger/'

Example of Response Body

The following example shows the JSON response for a deletion request of the trigger of a job:

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