Skip to content
English
  • There are no suggestions because the search field is empty.

Workflow Snippets — Action JSON Templates

Overview

Workflow Snippets are reusable JSON action templates you can paste into a feature type's action configuration to trigger automated behaviour when a feature is saved — sending emails, pushing to external systems, triggering integrations.


Available Snippets

Simple Email

Send an email whenever a feature of this type is recorded.

{
  "action": {
    "body": "{StandardEmail}",
    "type": "SendEmail",
    "title": "Soarvo Report",
    "recipients": "you@example.com"
  }
}

Replace recipients with one or more email addresses. The body uses the {StandardEmail} template variable — Soarvo expands this with feature details on send.

ArcGIS Online Commit

Push the feature to an ArcGIS Online feature service when it's saved.

{
  "action": {
    "type": "AGOLCommit",
    "url": "https://services3.arcgis.com/{ORG}/arcgis/rest/services/{LAYER}/FeatureServer/0",
    "username": "agolUsername",
    "password": "agolPassword!",
    "keyfield": "OBJECTID"
  }
}

Replace {ORG} with your ArcGIS Online organisation ID and {LAYER} with the target feature layer name. keyfield is the unique ID field used for upserts.

⚠️ Security: Never commit ArcGIS credentials to a shared snippet. Have an Administrator add them per project to keep secrets out of version control.

Where Workflow Snippets Live

Workflow snippets are configured per feature type. Contact Soarvo support to add custom workflow snippets to your feature types if the UI doesn't expose direct editing.


What's Next?