Get the Details of a Particular Job for an application

get

/iam/governance/applicationmanagement/api/v1/applications/{appId}/jobs/{jobid}

Returns the job details for a given application and job name

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful
Body ()
Root Schema : ApplicationJobDetails
Type: object
Show Source
Nested Schema : parameter
Type: array
Show Source
Nested Schema : ReconJobParameter
Type: object
Show Source
Back to Top

Examples

cURL Example

The following example demonstrates the ability to return the job details for a given application and job name. The information shown here is against a pseudo system and serves as a prototype.

curl -X GET http://pseudo.com/iam/governance/applicationmanagement/api/v1/applications/db2/jobs/ConnectorJob

Response Body Example

{    
    "jobName": "NewConnectorJob",    
    "jobMode": "Full",    
    "taskName": "Search Recon Task",    
    "jobScheduledType": "Single",    
    "startTime": "2018-09-13T00:00:00-07:00",    
    "nextFireTime": "2018-09-13T00:00:00-07:00",    
    "retries": 5,    
    "runEvery": 1,    
    "receiverType": "User",    
    "receiverID": "",    
    "taskStatus": true,    
    "reconjobprarameters": {        
        "parameter": [            
            {                
                "name": "Object Type",                
                "value": "User",                
                "helpText": "Object Type",                
                "dataType": "String",                
                "required": true            
            },            
            {                
                "name": "Application Name",                
                "value": "db2",                
                "helpText": "Application Name",                
                "dataType": "String",                
                "required": true            
            }        
        ]    
    }
}
Back to Top