Restored Transactions
Webhook when previously deleted transactions are restored.
Id: restoredTransactions
Event that notifies when an account has been automatically updated and transactions have been restored.
This event happens only when a transaction was previously marked as deleted but it has been restored. This is useful to resolve issues when the financial institutions fix data inconsistencies sent from their API.
Event Payload
| Name | Type | Description |
|---|---|---|
| accounts | array | Array of accounts that contain restored transactions |
| id | string | Account Id |
| transactions | array | Array of transactions ids |
Example payload
{
"accounts": [
{
"id": "6d0baf11-248e-4c11-9c04-97b7758b4e04",
"transactions": [
"d520402a-d982-43ee-b1d1-bdfd282249ea",
"613586bf-dac9-4996-9c03-7194a7d62297"
]
}
]
}