New Transaction
Id: newTransactions
Event that notifies when an account has been automatically updated and new transactions have come through.
Event Payload
Name | Type | Description |
---|---|---|
accounts | array[object] | Array of accounts that contain new 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"
]
}
]
}
Best Practices
When receiving transactions webhooks we recommend fetching them from our API to have the latest changes. Multiple transactions can be retrieved at once using our transactions endpoint
Updated 9 months ago