API Reference / Strategy - Link Review
Unsuggested tab — unlinked activities with NO pending proposal (INI-56)
get
https://api.intelig.ai/api/v1/intelig/strategy/link-review/unsuggested
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: unsuggested
Remediation surface: unlinked commits + PRs the suggestion engine never placed. Window-scoped (defaults to the active 14-day period when from is omitted — never all-time). The user picks an initiative per row and confirms via POST /strategy/initiatives/link-overrides.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/link-review/unsuggested" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
from | string (date-time) | no | Lower bound on activity timestamp (committed_at / external_created_at). Defaults to now − 14 days when omitted. |
to | string (date-time) | no | Upper bound on activity timestamp |
repositoryId | integer (int64) | no | Filter to a single repository |
entityType | string | no | Filter to commits or PRs only (COMMIT / PULL_REQUEST) |
query | string | no | Free-text search — matches commit message / PR title (case-insensitive) |
page | integer (int32) | no | Zero-based page index |
pageSize | integer (int32) | no | Page size (max 200) |
Response 200
application/json · ApiResponseUnsuggestedActivitiesDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | UnsuggestedActivitiesDto | — |
Status codes
200— OK401— —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.