Description: Gets a collection of steplet entities. Filter criteria can be supplied using query string parameters. Returns all steplets if no query parameters are supplied.
Security: Requires a valid user
Usage: GET api/v1/steplets
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 |
| Integer | Comma separated list of numeric pipeline ids |
| Integer | Comma separated list of numeric system code |
Request Parameters: Ignored
Produces: application/json
Sample Usage:
[
{
"id": 1,
"projectId": 1,
"pipelineId": 1,
"stepId": 1,
"stepletNumber": 1,
"statusCode": 4008,
"isConsoleArchived": true,
"triggeredAt": "2019-04-15T06:48:43.247Z",
"queuedAt": null,
"endedAt": "2019-04-15T06:48:43.511Z",
"startedAt": null,
"createdAt": "2019-04-15T06:48:43.253Z",
"updatedAt": "2019-04-15T06:48:43.519Z"
}
]Response Codes:
200: Success