API Reference / Strategy - Initiative Intent
Get strategic alignment dashboard
https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent/strategic-alignment
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getStrategicAlignment
Returns an initiative-centric view of strategic alignment with: - Overall alignment score (% of work linked to initiatives) - Activity breakdown by type (commits, PRs, meetings, documents) - Initiatives with activity (sorted by activity descending) - Initiatives without activity (stalled or not started) - Untracked work summary (work not linked to any initiative) This endpoint is designed for the Strategic Alignment dashboard.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent/strategic-alignment" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
windowDays | integer (int32) | no | Time window in days (default: 14, max: 90) |
from | string | no | Start date (YYYY-MM-DD) for absolute date range |
to | string | no | End date (YYYY-MM-DD) for absolute date range |
initiativeIds | integer[] | no | Comma-separated list of initiative IDs to filter by |
targetQuarter | string | no | Target quarter to filter initiatives (Q1, Q2, Q3, Q4) |
targetYear | integer (int32) | no | Target year to filter initiatives |
Response 200
application/json · ApiResponseStrategicAlignmentResponseDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | StrategicAlignmentResponseDto | Strategic Alignment dashboard response with initiative-centric work alignment metrics |
Status codes
200— Strategic alignment data returned successfully400— Invalid date range or parameters401— Not authenticated403— Insufficient permissions to access strategy pillar429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.