Analytics
Access manager dashboards and project reports. Pulse health, risk analysis, cumulative flow, and activity reports.
REST API — All endpoints require authentication via Bearer token. IncludeAuthorization: Bearer {token}in every request. Tokens are managed in GitScrum Settings → API. Base URL:https://services.gitscrum.com— All request paths in this documentation are relative to this base URL.
Access manager dashboards and project-level reports including pulse health, risk analysis, cumulative flow diagrams, and activity summaries.
Manager dashboard
Pulse health
GET /companies/manager-dashboard/pulse?company_slug={slug}Returns workspace health overview with key performance indicators.
| Parameter | Type | Description |
|---|---|---|
period | string | today, this-week, this-month, last-30-days |
view | string | all, active, overdue |
Response
{
"data": {
"health_score": 85,
"tasks_completed": 47,
"tasks_in_progress": 23,
"tasks_overdue": 5,
"velocity": 52,
"period": "this-week"
}
}Risk analysis
GET /companies/manager-dashboard/risks?company_slug={slug}Returns risk analysis across all projects in the workspace.
| Parameter | Type | Description |
|---|---|---|
filter | string | all, blocked, unassigned, stale, aging |
severity | string | all, critical, warning, info |
Response
{
"data": {
"total_risks": 12,
"critical": 3,
"warning": 5,
"info": 4,
"risks": [
{
"type": "blocked",
"severity": "critical",
"task": {
"uuid": "task-abc-123",
"title": "Payment integration"
},
"project": "web-app",
"days_blocked": 5
}
]
}
}Overview
GET /companies/manager-dashboard/overview?company_slug={slug}Returns the main manager dashboard overview with summary metrics across all projects.
Response
{
"data": {
"projects_active": 8,
"total_tasks": 342,
"completed_this_week": 47,
"team_members_active": 15,
"overdue_tasks": 12
}
}Health metrics
GET /companies/manager-dashboard/health?company_slug={slug}Returns aggregated health metrics for the workspace including project-level health scores.
Response
{
"data": {
"overall_score": 82,
"projects": [
{
"slug": "web-app",
"name": "Web App",
"health_score": 90,
"status": "healthy"
},
{
"slug": "mobile-app",
"name": "Mobile App",
"health_score": 65,
"status": "at_risk"
}
]
}
}Blocker analysis
GET /companies/manager-dashboard/blockers?company_slug={slug}Returns blocker analysis with categorization and impact assessment.
Response
{
"data": {
"total_blockers": 7,
"by_project": [],
"by_severity": {
"critical": 2,
"high": 3,
"medium": 2
},
"average_blocked_days": 3.2
}
}Command center
GET /companies/manager-dashboard/command-center?company_slug={slug}Returns a consolidated view of actionable items requiring manager attention.
Time entries summary
GET /companies/manager-dashboard/time-entries?company_slug={slug}Returns time entries summary across the workspace.
| Parameter | Type | Description |
|---|---|---|
time_filter | string | today, thisweek, billable, nonbillable |
Response
{
"data": {
"total_hours": 245.5,
"billable_hours": 198.0,
"non_billable_hours": 47.5,
"by_project": [],
"by_member": []
}
}Project reports
Cumulative flow
GET /companies/reports/cumulative-flow?company_slug={slug}&project_slug={slug}Returns cumulative flow diagram data showing task distribution across workflow stages over time.
| Parameter | Type | Description |
|---|---|---|
days | integer | Number of days (default 30, max 90) |
Response
{
"data": {
"dates": ["2026-01-08", "2026-01-09", "2026-01-10"],
"series": {
"backlog": [45, 43, 40],
"in_progress": [12, 14, 15],
"done": [23, 25, 28]
}
}
}Task aging
GET /companies/reports/project-age?company_slug={slug}&project_slug={slug}Returns task aging report showing how long tasks have been in their current state.
Response
{
"data": {
"buckets": [
{ "range": "0-3 days", "count": 25 },
{ "range": "4-7 days", "count": 12 },
{ "range": "8-14 days", "count": 8 },
{ "range": "15-30 days", "count": 4 },
{ "range": "30+ days", "count": 2 }
],
"average_age_days": 6.3
}
}Weekly activity
GET /companies/reports/weekly-activity?company_slug={slug}&project_slug={slug}Returns weekly activity summary including task movements, comments, and team participation.
Response
{
"data": {
"week": "2026-W06",
"tasks_created": 18,
"tasks_completed": 22,
"tasks_moved": 45,
"comments_added": 67,
"active_members": 12
}
}