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 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
}