Add/Update the trigger details

put

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

Adds or updates the trigger of a job.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : Trigger
Type: object
Show Source
Nested Schema : intervalValues
Type: array
Show Source
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 add or update the trigger of a job by submitting the PUT request using cURL. The information shown here is against a pseudo system and serves as a prototype.

cURL Example

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

Example of PUT Request Body

The following example shows the contents of the request body in JSON format:

{
    "startTime": "2021-11-24T17:44:00Z",
    "intervalType": "MONTHLYWEEKDAYS",
    "triggerType": "Cron",
    "intervalValues": [
        "Fourth Monday"
    ]
}

Example of PUT Response Body

The following example shows the contents of the response body in JSON format:

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