===Important Notes===
====Using Update Functions====
Here are some important notes to be aware of when calling update functions.
* Any existing and applicable workflows will be triggered and run after a record update.
* Any existing and applicable status-triggers will run for any status change after a record update.
====Using List Functions====
Custom parameters for List Functions are:
* criteria - this is an optional json array. This contains the following nodes: "andor", "field", "operator" and "value"
: Values of each nodes:
: "andor" - either "and" or "or"
: "field" - name of the standard/custom field to set the condition to
: "operator" - can use the following: =,>,>=,<=,<,<>,!=,like,not like
: "value" - value for the filter
: sample1: [{"andor":"and","field":"FIELDNAME","operator":"like","value":"PATTERN"}]<br/>
: sample2: [{"andor":"and","field":"FIELDNAME1","operator":"=","value":"100"},{"andor":"or","field":"FIELDNAME2","operator":"like","value":"PATTERN"}]
* sortby - this is an optional json array. This contains the following nodes: "field" and "direction"
: "field" - name of the standard/custom field to sort records by<br/>
: "direction" - either "asc" (for ascending) or "desc" (for descending)
* getstorevalue - this is an optional json array. Options are: int type: 0 = no (get display value), 1 = yes (get stored value)
===Error Messages===