API Reference / Strategy - Initiatives
Change initiative owner
patch
https://api.intelig.ai/api/v1/intelig/strategy/initiatives/{id}/owner
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: changeOwner
Reassigns initiative ownership to a different scope (team, individual, or organization)
Example request
curl -X PATCH "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/1/owner" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"ownerScopeType": "TEAM",
"ownerScopeId": 5,
"ownerName": "Platform Team"
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
ownerScopeType | string | yes | Owner scope type One of: ORGANIZATION, TEAM, CONTRIBUTOR Example: TEAM |
ownerScopeId | integer (int64) | no | ID of the owner scope entity Example: 5 |
ownerName | string | no | Display name of the new owner Example: Platform Team |
Response 200
application/json · ApiResponseInitiativeDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | InitiativeDto | Initiative details response |
Status codes
200— Initiative owner changed successfully400— Invalid owner scope type or request body401— Not authenticated403— Insufficient permissions to access strategy pillar404— Initiative not found429— —
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.