API Reference / Strategy - Initiative Link Overrides

Revoke an override (clear the manual choice, let reconciliation re-link)

delete https://api.intelig.ai/api/v1/intelig/strategy/initiatives/link-overrides/{overrideId}

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

Idempotent. After revoke, the next reconciliation tick re-runs automatic matching.

Example request

curl -X DELETE "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/link-overrides/1" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
overrideId integer (int64) yes

Response 204

application/json · object

No body.

Status codes

  • 204 — Override revoked
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Override not found for this org
  • 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.