These docs are for v2.5. Click to read the latest docs for v3.0.

Deleted Transactions

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

Name

Type

Description

accounts

arraydeletedT

Array of accounts that contain restored transactions

id

string

Account Id

transactions

arraydeletedT

Array of transactions ids

Example payload

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