API Reference / Strategy - Initiative Intent

Get untracked PRs

get https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent/strategic-alignment/prs/untracked

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

Returns paginated list of PRs that are NOT linked to any initiative. Used for drilldown from the Strategic Alignment dashboard "untracked PRs" count.

Example request

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

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 PRs (ignored for untracked)
targetYear integer (int32) no Target year to filter linked PRs (ignored for untracked)
page integer (int32) no Page number (0-based)
size integer (int32) no Page size

Response 200

application/json · ApiResponseAlignmentPRsResponseDto

FieldTypeDescription
success boolean
message string
data AlignmentPRsResponseDto Paginated response for alignment pull requests drilldown

Status codes

  • 200 — Untracked PRs returned successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 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.