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 | array[object] | Array of accounts that contain restored transactions |
id | string | Account Id |
transactions | array[string] | Array of transactions ids |
Example payload
{
"accounts": [
{
"id": "6d0baf11-248e-4c11-9c04-97b7758b4e04",
"transactions": [
"d520402a-d982-43ee-b1d1-bdfd282249ea",
"613586bf-dac9-4996-9c03-7194a7d62297"
]
}
]
}
Updated 12 months ago