API Reference / Strategy - Initiative Intent
Reapply ownership pattern attribution to existing signals
https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent/ownership/reapply
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: reapplyOwnershipMetadata
Walks every repository that currently has at least one ownership pattern for this organization and re-evaluates ownership attribution on each commit signal in that repository. This is the back-fill path for patterns that were created before the repo's commits were indexed (or before the listener that auto-back-fills on pattern add/remove was deployed). After this call returns, the Strategic Alignment endpoint should reflect VERIFIED tier and PATH / REPOSITORY match types. Idempotent. Safe to run multiple times.
Example request
curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/intent/ownership/reapply" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Response 200
application/json · ApiResponseReapplyOwnershipResultDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | ReapplyOwnershipResultDto | — |
Status codes
200— Reapply completed; per-repo signal update counts returned401— 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.