latestOpenAPI 3.1.02026-08-183894205.8 MB
f67a043e3190
Recommended Actions
List Recommended Action Executions
Lists the per-step record of a recommended action chain the server ran — one entry per step in position order, each carrying its current status and, once the step completed, the API response it produced. A chain that was never run server-side returns an empty list.
get/recommended_actions/{id}/executions
Path parameters
idstring required
Chain ID from the list endpoint.
Query parameters
account_idstring
Account ID, prefixed biz_. Defaults to the API key's own account.
Response
executions listed
Example response
{
"chain_id": "rac_chain_xxxxxxxxxxxx",
"executions": [
{
"action": "create_product",
"completed_at": "2026-01-01T12:00:00.000Z",
"id": "raex_xxxxxxxxxxxxxx",
"output": {
"id": "prod_xxxxxxxxxxxxxx"
},
"status": "succeeded"
}
]
}