POST

/action

1 endpoint
POST/action/act
act
Request Body
FieldTypeDescription
action_config_paramsobjectAction config (name, stereotype, …)
check_goal_satisfiedboolWhether to verify goal satisfaction
Response200 OK
FieldTypeDescription
successboolWhether the call succeeded
msgstringStatus or error message
datanullPayload; shape depends on the endpoint
Request bodyJSON
{
  "action_config_params": {
    "name": "...",
    "stereotype": "..."
  },
  "check_goal_satisfied": true
}
Response200 OK
{
  "success": true,
  "msg": "ok",
  "data": null
}