Get trigger details of the job
get
/iam/governance/selfservice/api/v1/scheduler/jobs/{jobName}/trigger
Returns the trigger details of a job such as schedule and interval type.
Request
Path Parameters
-
jobName: string
Name of the job
Response
Supported Media Types
- application/json
200 Response
OK
Root Schema : Trigger
Type:
Show Source
object
-
endTime(optional):
string(date-time)
Format: yyyy-MM-dd'T'HH:mm:ss'Z'
-
intervalType(optional):
string
-
intervalValues(optional):
array intervalValues
-
jobName(optional):
string
-
nextFireTime(optional):
string(date-time)
Format: yyyy-MM-dd'T'HH:mm:ss'Z'
-
startTime(optional):
string(date-time)
Format: yyyy-MM-dd'T'HH:mm:ss'Z'
-
triggerName(optional):
string
-
triggerType(optional):
string
Allowed Values:
[ "Cron", "Periodic", "Single", "None" ]
400 Response
Invalid input
Examples
The following example shows how to retrieve the trigger details of a job such as schedule and interval type by submitting the GET request using cURL. The information shown here is against a pseudo system and serves as a prototype.
cURL Example
curl -i -X GET -u username:password \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ 'http://pseudo.com/iam/governance/selfservice/api/v1/scheduler/jobs/Application Bulk Create Job/trigger/'
Example of Response Body
The following example shows the JSON response for a retrieval request for the trigger details of a job:
{ "triggerName": "Application Bulk Create Job", "jobName": "Application Bulk Create Job", "startTime": "2022-08-23T06:02:00Z", "nextFireTime": "2022-08-23T06:02:00Z", "triggerType": "Periodic", "intervalType": "HOURS", "intervalValues": [ "1" ] }