Hanzo
OpenapiGuide

Returns the caller org's Business AI action ledger, most recent first: every…

Returns the caller org's Business AI action ledger, most recent first: every "do it for me" tool call, the arguments it ran with, its result and whether…

GET /v1/guide/actions

Addresshttps://api.hanzo.ai/v1/guide/actions
MethodGET
Operationget_guide_actions
AuthAuthorization: Bearer $HANZO_API_KEY

Returns the caller org's Business AI action ledger, most recent first: every "do it for me" tool call, the arguments it ran with, its result and whether it succeeded. It is the audit-visible record of what the agent did on the org's behalf, and the backing state for the "acted" auto-detect signal.

Request

GET /v1/guide/actions takes no parameters and no body — the credential is the whole request.

Response

StatusBodyMeaning
200actionsViewok

200 body — 9 fields.

FieldInTypeAlwaysDescription
databodyActionRecord[]Data is the most-recent actions first, capped at listActionsLimit.
data[].argsbodystringArgs is the JSON the tool was called with, recorded as TEXT exactly as sent — including whatever the AI drafted into it — so a run can be read back and…
data[].createdAtbodyintegerCreatedAt is when the run was recorded, as Unix seconds.
data[].errbodystringErr is why the run failed, when it did.
data[].idbodystringID identifies this one execution.
data[].okbodybooleanOK is whether the tool ran to completion. It is the ledger's own verdict, not the tool's opinion of the outcome — a tool that succeeded at reporting bad news…
data[].resultbodystringResult is the tool's own answer, likewise recorded as JSON text.
data[].stepIdbodystringStepID is the checklist step the Business AI was acting on.
data[].toolbodystringTool is the MCP tool that was dispatched, by name.

Failure carries the platform error shape — see Errors.

Examples

hanzo guide actions

Guide API · All Hanzo APIs · Interactive reference

How is this guide?

On this page