Here's an example webhook:
{
type: 'transactions.updates',
financial_connection_id: "financial_connection_id",
environment: "sandbox",
source: "teller",
//Boolean indicating whether historical transaction information (up to 24 months) is ready to be queried.
historical_transactions_available: true,
//An array of string transaction ids indicated the transactions that have been removed and will not be available if the transactions are queried again. Currently only supported by plaid
removed_transaction_ids: [
"tx_1234",
"tx_5677"
]
remote_data: {}
}
Here's an example webhook: { type: 'transactions.updates', financial_connection_id: "financial_connection_id", environment: "sandbox", source: "teller", //Boolean indicating whether historical transaction information (up to 24 months) is ready to be queried. historical_transactions_available: true, //An array of string transaction ids indicated the transactions that have been removed and will not be available if the transactions are queried again. Currently only supported by plaid removed_transaction_ids: [ "tx_1234", "tx_5677" ] remote_data: {} }