API Reference / Strategy - Initiative Intent

Get commits by initiative

get https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent/strategic-alignment/commits/by-initiative/{initiativeId}

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: getCommitsByInitiative

Returns paginated list of commits linked to a specific initiative. Used for drilldown from an initiative card in the Strategic Alignment dashboard.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent/strategic-alignment/commits/by-initiative/1" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
initiativeId integer (int64) yes Initiative ID

Query parameters

NameTypeRequiredDescription
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
targetQuarter string no Target quarter to filter linked commits
targetYear integer (int32) no Target year to filter linked commits
page integer (int32) no Page number (0-based)
size integer (int32) no Page size

Response 200

application/json · ApiResponseAlignmentCommitsResponseDto

FieldTypeDescription
success boolean
message string
data AlignmentCommitsResponseDto Paginated response for alignment commits drilldown

Status codes

  • 200 — Initiative commits returned successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Initiative not found
  • 429 — —

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.