Get Policy Alert Job Status
GET/alert/policy/jobs/:id/status
Returns the status of a job submitted to list alerts by policy. Uses the specified job ID to identify the job.
Request
Path Parameters
id stringrequired
Job ID
Responses
- 200
successful operation
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
createdBy string
Job creator
createdOn int64
Creation timestamp
downloadUri string
Download URI
id string
Job ID
lastModified int64
Timestamp for last modified
recordCount int32
Record Count
status string
Possible values: [COMPLETED
, FAILED
, IN_PROGRESS
, READY_TO_DOWNLOAD
, SUBMITTED
]
Job status
statusUri string
Status URI
timeTaken int64
Time taken to complete the job
{
"createdBy": "string",
"createdOn": 0,
"downloadUri": "string",
"id": "string",
"lastModified": 0,
"recordCount": 0,
"status": "COMPLETED",
"statusUri": "string",
"timeTaken": 0
}
Loading...