Configurations API

Import and export workflow configurations

Available Endpoints

The Configuration Object

object string

Object type identifier

account_data_schema array

Account data schema

action_types array

ActionTypes

triggers array

Triggers

user_data_schema array

User data schema for the account

workflows array

Workflows

Configuration Object
1
2
3
{
  "configuration": "---\naction_types: []\ntriggers: []\nworkflows: []\napps: []\nuser_data_schema:\n- type: String\n  source: user\n  variable: first_name\n  data_path: first_name\n  display_label: First Name\n- type: String\n  source: user\n  variable: last_name\n  data_path: last_name\n  display_label: Last Name\naccount_data_schema:\n- type: String\n  source: account\n  variable: company_name\n  data_path: company_name\n  display_label: Company Name\n- type: String\n  source: account\n  variable: company_email\n  data_path: company_email\n  display_label: Company Email\n"
}