|
|
|
|
|
by tonikami
1093 days ago
|
|
Hey, yes we have the transactionupdate webhook that is triggered when new transactions are available to fetch: https://docs.letsfuse.com/reference/transactionsupdates 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: {}
} |
|