POST
act/action/actRequest Body
| Field | Type | Description |
|---|---|---|
action_config_params | object | Action config (name, stereotype, …) |
check_goal_satisfied | bool | Whether to verify goal satisfaction |
Response200 OK
| Field | Type | Description |
|---|---|---|
success | bool | Whether the call succeeded |
msg | string | Status or error message |
data | null | Payload; shape depends on the endpoint |
Request bodyJSON
{
"action_config_params": {
"name": "...",
"stereotype": "..."
},
"check_goal_satisfied": true
}Response200 OK
{
"success": true,
"msg": "ok",
"data": null
}