Projects
Get project status
This endpoint returns information on the status the project, including activities, health, resources, and aggregated flag lifecycle data.
get/api/admin/projects/{projectId}/status
Path parameters
projectIdstring required
Response
projectStatusSchema
Example response
{
"activityCountByDate": [
{
"date": "2022-12-14"
}
],
"health": {
"current": 100
},
"technicalDebt": {
"current": 100
},
"lifecycleSummary": {
"initial": {
"averageDays": 5,
"currentFlags": 10
},
"preLive": {
"averageDays": 5,
"currentFlags": 10
},
"live": {
"averageDays": 5,
"currentFlags": 10
},
"completed": {
"averageDays": 5,
"currentFlags": 10
},
"archived": {
"currentFlags": 10,
"last30Days": 5
}
}
}