Form builder: Action
Overview
The formbuilder_formaction object represents an individual action that is executed when an instance of a form is submitted. This could be an action to send an email, POST to a webhook, etc.
| Object name | formbuilder_formaction | 
|---|---|
| Table name | psys_formbuilder_formaction | 
| Path | /preside-objects/formbuilder/formbuilder_formaction.cfc | 
Properties
property name="form"      relationship="many-to-one" relatedto="formbuilder_form"       required=true indexes="form,sortorder|1";
property name="condition" relationship="many-to-one" relatedto="rules_engine_condition" required=false ruleContext="webrequest";
property name="sort_order"    type="numeric" dbtype="int"     required=true indexes="sortorder|2";
property name="action_type"   type="string"  dbtype="varchar" required=true maxlength=100;
property name="configuration" type="string"  dbtype="text"    required=false;