ActionsreplaceGeofencesVersion: 4.62On this pagereplaceGeofences Field Configurations KeyTypeDescriptionDefault Value"params" (required)Objectundefinednull Parameters KeyTypeDescriptionDefault Value"async"BooleanSpecifies whether the action should perform asynchronously.null"fences"ArrayList of fences to replace.null"query"StringQuery to use.null"queryParams"ArrayThe params to append to the query.null"table"StringDatabase table to use.null"template"StringTemplate to apply to the query result.null Inherited From Base ActionBase ActionField ConfigurationsKeyTypeDescriptionDefault Value"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null"leadingDelimiter"StringThe leading mustache delimiter to use.null"params"Object,ArrayObject containing the properties of the action.null"trailingDelimiter"StringThe trailing mustache delimiter to use.null"type"StringType name of the action.null Examples Example 1: Replace geofences using static data. Show ExampleHide ExampleReplace geofences firstGeofence and secondGeofence.{ "type": "replaceGeofences", "params": { "fences": [ { "id": "firstGeofence", "latitude": "50.3", "longitude": "24.3" }, { "id": "secondGeofence", "latitude": "90.0", "longitude": "0.0" } ] }}The actions to be executed are specified in the actions parameter, in this case a replaceGeofences action. Example 2: Replace geofences using dynamic data. Show ExampleHide ExampleReplace geofences retrieved from a query.{ "type": "replaceGeofences", "params": { "table": "geofences", "query": "newFences" }}The actions to be executed are specified in the actions parameter, in this case a replaceGeofences action.