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 Type | Name | Sample |
---|---|---|
StringType | STRING | "Delaware Fund" |
StringArrayType | STRING_ARRAY | [ "Delaware One Fund", "Delaware Two Fund" ] |
IntegerType | INTEGER | 42 |
FloatType | FLOAT | 3.14 |
BooleanType | BOOLEAN | true |
DateTimeType | DATE_TIME | 2023-07-22T00:00:00Z |
CurrencyType | CURRENCY | { "currency": "GBP", "amount": 2000000 } |
Updated 3 days ago