Get deployment list
POST/deployments/list
Get list of all deployments. The API returns preliminary data for each deployment, like status, current stage total number of successes and failures.
Request
- application/json
Body
filter object
status string
limit integer
offset integer
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
success boolean
error string
errorcode integer
count integer
data object[]
deploymentId string
deploymentName string
status string
stage integer
Current deployment or stage count
progress integer
success integer
Number of devices reported success so far
failure integer
Number of devices reported failure so far
skipped integer
Number of devices which has skipped this deplyment
startTime integer
When deployment phase was started or will start
expiryTime integer
Time at which deployment will expire
next integer
{
"success": true,
"error": "string",
"errorcode": 0,
"count": 0,
"data": [
{
"deploymentId": "string",
"deploymentName": "string",
"status": "string",
"stage": 0,
"progress": 0,
"success": 0,
"failure": 0,
"skipped": 0,
"startTime": 0,
"expiryTime": 0
}
],
"next": 0
}
Loading...