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

NameTypeRequiredDescription
entityType string yes Entity type
entityId integer (int64) yes Internal entity ID

Response 200

application/json · ApiResponseListInitiativeLinkOverrideDto

FieldTypeDescription
success boolean
message string
data InitiativeLinkOverrideDto[]

Status codes

  • 200 — Entity override history
  • 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.