API Reference / Strategy - Initiative Intent Snapshots
Full snapshot history (newest first)
get
https://api.intelig.ai/api/v1/intelig/strategy/initiatives/{initiativeId}/intent-snapshots
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getHistory
Every recorded version of this initiative's intent — what it said it was going to do, and when that changed. Attribution is judged against the intent that was current when a commit landed, not today's, so this is the history that explains why an old commit matched what it did.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/1/intent-snapshots" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
initiativeId | integer (int64) | yes | — |
Response 200
application/json · ApiResponseListInitiativeIntentSnapshotDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | InitiativeIntentSnapshotDto[] | — |
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.