API Reference / Strategy - Initiative Ownership
Remove an ownership pattern from an initiative
delete
https://api.intelig.ai/api/v1/intelig/strategy/initiatives/{initiativeId}/ownership-patterns/{patternId}
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: removePattern
Deletes the specified ownership pattern. Commits that were previously attributed via this pattern will fall back to semantic inference for initiative attribution.
Example request
curl -X DELETE "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/1/ownership-patterns/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
initiativeId | integer (int64) | yes | Initiative ID |
patternId | integer (int64) | yes | Pattern ID to remove |
Response 204
application/json · ApiResponseVoid
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | object | — |
Status codes
204— Pattern removed successfully401— —404— Pattern not found or does not belong to this initiative429— —
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.