Form data column updated

Triggered when any form data column changes.

Definition

In FundSub, you can configure a form field to appear as a column in the master dashboard. This is known as a Form Data Column. This webhook event notifies customers whenever changes are made to any of these columns.

Event name

fundsub.order.form_data_column.value.updated

Example payload

 {
  "event": "fundsub.order.form_data_column.value.updated",
  "createdAt": "2025-05-20T08:41:13.586247Z",
  "fundId": "txnyw4o3o1pppk02.fsb58ew",
  "orderId": "txnyw4o3o1pppk02.fsb58ew.lpp2299516",
  "columnName": "Investor type",
  "columnId": "main.entityinvestortype",
  "dataType": "STRING",
  "oldValue": "Single Individual",// Optional, will not return upon null
  "newValue": "Tenants in Common" // Optional, will not return upon null
}

_dataType_ key specifies the data type of updated form field. Please refer to this table regarding our definition of data types

Data TypeNameSample
StringTypeSTRING"Delaware Fund"
StringArrayTypeSTRING_ARRAY[
"Delaware One Fund",
"Delaware Two Fund"
]
IntegerTypeINTEGER42
FloatTypeFLOAT3.14
BooleanTypeBOOLEANtrue
DateTimeTypeDATE_TIME2023-07-22T00:00:00Z
CurrencyTypeCURRENCY{
"currency": "GBP",  
"amount": 2000000
}