GET selfservicejobs/{selfServiceJobId}
Retrieve the status of a self service job by its ID.
URL Parameters
Name | Description |
---|---|
selfServiceJobId | The ID of the self service job. This must be a positive integer |
Response body model example and description
{ "id": 153758, "message": "Job ongoing", "completed": true, "error": false, "aborted": false, "active": true, "exception": "An exception was encountered during execution: {exception details...}" }
Name | Type | Description |
---|---|---|
id | Integer |
The ID of the requested job |
message | String |
The status of the job |
completed | Boolean |
Whether or not the job has finished with or without an error |
error | Boolean |
Whether the job has finished with an error, e.g. the job could not be transmitted to the load testing agents |
aborted | Boolean |
Whether the job was aborted |
active | Boolean |
Whether the job is still active. A job is active as long as it has not been deleted from LTP. |
exception | String |
Any exception that arose during the function call. In case no exception was thrown this will be an empty string. |