Description: Gets a collection of stepletTestReport entities. Filter criteria can be supplied using query string parameters.
Security: Requires a valid user
Usage: GET api/v1/stepletTestReports
Consumes: application/json
Query Parameters
Parameter | Data Type | Description |
|---|---|---|
| Integer | Comma separated list of numeric steplet ids |
| Integer | Comma separated list of numeric step ids |
| Integer | Comma separated list of numeric project ids |
Produces: application/json
Sample Response:
[
{
"errorDetails": [],
"failureDetails": [],
“durationSeconds”: 2,
“totalTests”: 10,
“totalPassing”: 10,
“totalFailures”: 0,
“totalErrors”: 0,
“totalSkipped”: 0,
"id": 5,
"projectId": 1,
"stepId": 59,
"stepletId": 59,
"updatedAt": "2019-04-12T09:33:00.011Z",
"createdAt": "2019-04-12T09:33:00.011Z"
}
]Response Codes:
200: Success