API Reference / Strategy - Initiatives
Get initiative execution graph
get
https://api.intelig.ai/api/v1/intelig/strategy/initiatives/{id}/execution-graph
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getExecutionGraph
Returns the full execution chain for an initiative: Strategy → Code → Cost → Outcome
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/1/execution-graph" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
from | string (date-time) | no | — |
to | string (date-time) | no | — |
Response 200
application/json · ApiResponseExecutionGraphDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | ExecutionGraphDto | Execution graph showing the full Strategy → Code → Cost → Outcome chain |
Status codes
200— Execution graph returned successfully401— 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.