Skip to content

List decisions

Use this operation to populate an investigation view or find a decision before retrieving its full evidence. Results are ordered newest first.

GET/workspaces/{workspace_slug}/decisions
Parameter Location Required Description
workspace_slug Path Yes Workspace whose decisions the caller may access.

This operation currently has no query parameters or pagination controls.

Terminal window
curl "$ACTERA_BASE_URL/workspaces/$ACTERA_WORKSPACE_SLUG/decisions" \
"${ACTERA_AUTH_HEADERS[@]}"

The response is a JSON array, not an object wrapper.

[
{
"id": "dec_7f26",
"agent_id": "refund-agent",
"action_type": "refund.create",
"effect": "REQUIRE_APPROVAL",
"status": "PENDING_APPROVAL",
"explanation": "Repeat refunds require review",
"created_at": "2026-09-05T10:18:42Z"
}
]

effect is the policy result; status is the current lifecycle state. Authentication and workspace failures return 401 or 403. This read is safe to retry after temporary failures. Use each id with Retrieve a decision for complete evidence.