removeGeofences
Field Configurations
Key | Type | Description | Default Value |
---|---|---|---|
"params" (required) | Object | undefined | null |
Parameters
Key | Type | Description | Default Value |
---|---|---|---|
"async" | Boolean | Specifies whether the action should perform asynchronously. | null |
"fences" | Array | Fences to be removed | null |
"query" | String | Query to use. | null |
"queryParams" | Array | The params to append to the query. | null |
"table" | String | Database table to use. | null |
"template" | String | Template to apply to the query result. | null |
Inherited
From Base Action
Base Action
Field Configurations
Key | Type | Description | Default Value |
---|---|---|---|
"dynamicParams" | Object | Dynamic params to retrieve data from a specific context e.g. a userSetting. | null |
"leadingDelimiter" | String | The leading mustache delimiter to use. | null |
"params" | Object,Array | Object containing the properties of the action. | null |
"trailingDelimiter" | String | The trailing mustache delimiter to use. | null |
"type" | String | Type name of the action. | null |
Examples
Example 1: remove fences by ID.
Remove geofences using static IDs.
{
"type": "removeGeofences",
"params": {
"fences": [
{
"id": "firstGeofence"
},
{
"id": "secondGeofence"
}
]
}
}
The actions to be executed are specified in the actions
parameter, in this case a removeGeofences action.
Result:
A removeGeofences action has been created.
Example 2: remove fences using a query.
Remove geofences retrieving the IDs from a database.
{
"type": "removeGeofences",
"params": {
"table": "geofences",
"query": "activeFences"
}
}
The actions to be executed are specified in the actions
parameter, in this case a removeGeofences action.
Result:
A removeGeofences action has been created.