Project results
GET/project/:ProjectId/job/:JobId/results
Retrieve latest project's checks results
Request
Path Parameters
ProjectId stringrequired
A unique project ID
Example: 5e9602e7a39e5a46428b457f
JobId stringrequired
A unique Job ID
Example: 55ae166c25b395537a8b6029
Responses
- 200
Project results
- application/json
- Schema
- Example (from schema)
Schema
jobIdstring
A unique ID for each project job
Example:
6346802f314d328b4a8b4579
totalinteger
The total number of tests performed
Example:
28
failedinteger
The number of failed tests
Example:
0
processedboolean
Has this job already been processed
Example:
true
persistboolean
Is this job temporary of persist
Example:
true
startedAtinteger
Time when job started (unix timestamp)
Example:
1665564719
durationnumber
Duration of the job in seconds
Example:
2.1946158409119
modenumber
Example:
0
areasstring[]
List of areas
resultsstring[]
Array of test results -- each result has a testId, testName etc.
{
"jobId": "6346802f314d328b4a8b4579",
"total": 28,
"failed": 0,
"processed": true,
"persist": true,
"startedAt": 1665564719,
"duration": 2.1946158409119,
"mode": 0,
"areas": [
"string"
],
"results": [
"string"
]
}