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