There are many useful parameters that you can use when creating or updating records on Ragic to save your time writing duplicate code for what can be done on Ragic.
Parameter Name | Description |
---|---|
doFormula | Specifying doFormula=true tells Ragic API to recalculate all formulas first when a record is created or updated. Do note that if this is set to true, the workflow scripts that you configured on the sheet will not run to avoid infinite loops. |
doDefaultValue | Specifying doDefaultValue=true tells Ragic API to load all default values when a record is created or updated. |
doLinkLoad | Specifying doLinkLoad=true tells the Ragic API to recalculate all formulas first, and then execute all link and load operations when a record is created or updated.
Specifying doLinkLoad=first tells the Ragic API to execute all link and load operations first, and then recalculate all formulas when a record is created or updated. When using either of the above parameters and formula recalculation is required, you must also specify doFormula=true. |
doWorkflow | Specifying doWorkflow=true tells Ragic API to execute the workflow script associated with this API call. |
notification | Specifying notification=true tells Ragic API to send out notifications to relevant users, or false, otherwise. The default is true when not specified. |
checkLock | Specifying checkLock=true tells Ragic API to check if the record is locked before an update, and not edit the record if the record is locked. |