API Reference / Strategy - Link Review

Org-wide link review — Suggested or Linked tab

get https://api.intelig.ai/api/v1/intelig/strategy/link-review

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

One paged queue across the whole organization instead of per commit or per initiative. `SUGGESTED` returns activities with a pending proposal — the work queue, and the list to walk when automating approval; `LINKED` returns activities already attributed, for auditing what the matcher decided. Confirm or dismiss individual rows through the link-proposals endpoints.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/link-review" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Query parameters

NameTypeRequiredDescription
tab string no Which tab: SUGGESTED (pending proposals) or LINKED (confirmed)
from string (date-time) no Lower bound on row timestamp (proposed_at for SUGGESTED, committed_at/created_at for LINKED)
to string (date-time) no Upper bound on row timestamp
initiativeId integer (int64) no Filter to a single initiative
matchType string no Filter to a single match type (legacy — prefer matchTypes for multi-select)
matchTypes string[] no Filter to one or more match types (repeated param e.g. matchTypes=KEYWORD&matchTypes=LLM_CLASSIFIED)
entityType string no Filter to commits or PRs only
minConfidence number (double) no Minimum confidence (SUGGESTED only)
maxConfidence number (double) no Maximum confidence — exclusive upper bound (SUGGESTED only)
query string no Free-text search — matches commit message, initiative name, and reason (case-insensitive)
page integer (int32) no Zero-based page index
pageSize integer (int32) no Page size (max 200)

Response 200

application/json · ApiResponseLinkReviewDto

FieldTypeDescription
success boolean
message string
data LinkReviewDto

Status codes

  • 200 — OK
  • 401 — —
  • 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.