API Reference / Strategy - Initiative Discovery
Confirm a candidate as a real initiative
post
https://api.intelig.ai/api/v1/intelig/strategy/discovery/candidates/{candidateId}/confirm
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: confirmCandidate
Creates an initiative from the candidate and derives ownership patterns from the paths the candidate’s commits touched, so future commits on those paths attribute to it automatically.
Example request
curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/discovery/candidates/1/confirm" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"renameTo": "Autonomous Intelligence",
"description": "Close the loop: the platform runs the execution cycle itself"
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
candidateId | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
renameTo | string | no | Name to give the initiative. Omit to keep the discovered name. Example: Autonomous Intelligence |
description | string | no | Description to give the initiative. Omit to keep the discovered one. Example: Close the loop: the platform runs the execution cycle itself |
Response 200
application/json · ApiResponseLong
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | integer (int64) | — |
Status codes
200— OK401— —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.