Deleted Transactions

Webhook when transactions are deleted or removed.

Id: deletedTransactions

Event that notifies when an account has been automatically updated and transactions have been marked as deleted.

This can happen when the financial institution marks a transaction as deleted or stop sending it.
More information can be found here.

Event Payload

NameTypeDescription
accountsarrayArray of accounts that contain restored transactions
idstringAccount Id
transactionsarrayArray of transactions ids

Example payload

{
    "accounts": [
        {
            "id": "6d0baf11-248e-4c11-9c04-97b7758b4e04",
            "transactions": [
                "d520402a-d982-43ee-b1d1-bdfd282249ea",
                "613586bf-dac9-4996-9c03-7194a7d62297"
            ]
        }
    ]
}