Custom column updated
Triggered when any custom column changes.
Definition
In FundSub, you can create a custom column in the master dashboard. This is known as a Custom Column
. This webhook event notifies customers whenever changes are made to any of these columns. IMPORTANT: Note
column is not currently supported.
Event name
fundsub.order.custom_column.value.updated
Example payload
{
"event": "fundsub.order.custom_column.value.updated",
"createdAt": "2025-05-20T08:36:55.380498Z",
"fundId": "txnyw4o3o1pppk02.fsb58ew",
"orderId": "txnyw4o3o1pppk02.fsb58ew.lpp49ly37m",
"columnName": "Custom amount",
"columnId": "txnyw4o3o1pppk02.fsb58ew.cdcer3g32p",
"dataType": "CURRENCY",
"oldValue": { // Optional, will not return upon null
"currency": "GBP",
"amount": 1000000
},
"newValue": { // Optional, will not return upon null
"currency": "GBP",
"amount": 2000000
}
}
_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