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

NameTypeRequiredDescription
name string yes

Response 200

application/json · ApiResponseListAgentActionResponse

FieldTypeDescription
success boolean
message string
data AgentActionResponse[]

Status codes

  • 200 — OK
  • 401 — —
  • 404 — Not Found
  • 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.