Gets the Report of a Job History

get

/iam/governance/applicationmanagement/api/v1/applications/{appid}/jobs/{jobid}/history/{historyId}/report

Gets the report of a job run in terms of number of successful events, ussuccessful events, accounts or user created, accounts or users updated, etc

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : ApplicationJobReport
Type: object
Show Source
Back to Top

Examples

cURL Example

This table demonstrates the ability to get the report of a job run in terms of the number of successful events, unsuccessful events, accounts/user created, accounts/user updated, and so on. 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/db2%20Target%20Recon%20Job/history/959/report

Response Body Example

{
    "jobExecutionID": 959,
    "eventCount": 0,
    "successfulEvent": 0,
    "unsuccessfulEvent": 0,
    "toBeProcessed": 0,
    "userCreated": 0,
    "userUpdated": 0,
    "accountCreated": 0,
    "accountUpdated": 0,
    "userDeleted": 0,
    "accountDeleted": 0,
    "orphanAccountCreated": 0
}
Back to Top