Get job details

get

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

Retrieves the details of a job such as a parameter, failed notification, and other details.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : JobDetails
Type: object
Show Source
Nested Schema : notification
Type: object
Show Source
Nested Schema : parameters
Type: array
Show Source
Nested Schema : JobParameter
Type: object
Show Source

400 Response

Invalid input
Back to Top

Examples

The following example shows how to retrieve the details of a job such as a parameter, failed notification, and other details 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/Catalog Synchronization Job'

Example of Response Body

The following example shows the JSON response for a retrieval request for the details of a job:

{
    "jobName": "Catalog Synchronization Job",
    "taskName": "Catalog Synchronization Task",
    "jobScheduleType": "Cron",
    "cronScheduleType": "MONTHLYWEEKDAYS",
    "retryCount": 5,
    "concurrent": false,
    "parameters": {
        "Process Entitlements": {
            "value": "true",
            "helpText": "Processing required for Entitlements",
            "required": false,
            "dataType": "Boolean"
        },
        "Mode": {
            "value": "Incremental",
            "helpText": "Possible values are 'Full'/'Incremental'/'Metadata'/'Recalculate Tags'/'Technical Glossary'",
            "required": true,
            "dataType": "String"
        },
        "Update Date": {
            "value": "",
            "helpText": "Update Date",
            "required": false,
            "dataType": "String"
        },
        "Process Roles": {
            "value": "false",
            "helpText": "Processing required for Roles",
            "required": false,
            "dataType": "Boolean"
        },
        "Process Application Instances": {
            "value": "true",
            "helpText": "Processing required for Application Instances",
            "required": false,
            "dataType": "Boolean"
        },
        "File Path": {
            "value": "",
            "helpText": "Path of CSV file for seeding Metadata Or Directory path Containing XML for Seeding Technical Glossary",
            "required": false,
            "dataType": "String"
        },
        "Updated Date": {
            "value": "08/23/2022 09:58:51",
            "helpText": "Date after which records will be synchronized with catalog('MM/dd/yyyy HH:mm:ss')",
            "required": false,
            "dataType": "String"
        }
    },
    "status": "STOPPED",
    "enabled": true
}
Back to Top