API Reference / Strategy - Initiative Link Overrides
Audit trail (full history) for a specific entity
get
https://api.intelig.ai/api/v1/intelig/strategy/initiatives/link-overrides/by-entity
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: byEntity
Every override ever applied to one commit or pull request, not just the current one — who changed the attribution, to what, and why. Answers "why is this commit attributed here" when the current link alone does not.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/link-overrides/by-entity?entityType=string&entityId=1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
entityType | string | yes | Entity type |
entityId | integer (int64) | yes | Internal entity ID |
Response 200
application/json · ApiResponseListInitiativeLinkOverrideDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | InitiativeLinkOverrideDto[] | — |
Status codes
200— Entity override history401— 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.