API Reference / agent-controller
Actions this agent took or proposed
get
https://api.intelig.ai/api/v1/intelig/agents/{name}/actions
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getActions
The write side of an agent's run: what it changed, or what it would change were it not in advisory mode. Requires the `agent:read` scope.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/agents/string/actions" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
name | string | yes | — |
Response 200
application/json · ApiResponseListAgentActionResponse
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | AgentActionResponse[] | — |
Status codes
200— OK401— —404— 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.