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
jobId string
A unique ID for each project job
Example:
6346802f314d328b4a8b4579
total integer
The total number of tests performed
Example:
28
failed integer
The number of failed tests
Example:
0
processed boolean
Has this job already been processed
Example:
true
persist boolean
Is this job temporary of persist
Example:
true
startedAt integer
Time when job started (unix timestamp)
Example:
1665564719
duration number
Duration of the job in seconds
Example:
2.1946158409119
mode number
Example:
0
areas string[]
List of areas
results string[]
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"
]
}