-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No Account Info for deleted Transactions #124
Comments
👍 Good call. I believe we have enough info available to include a relationship to the account in the event payload. Happy to have a look at this one! |
Awesome, thanks for that! |
Can you confirm that DELETED events must be received after CREATED events, or is it possible the order can get mixed? Cheers! Here's what it looks like in my app btw. |
You might get events out of sequence if the event delivery failed on the first attempt and needs to be retried.
We don't currently have a way of holding the queue of subsequent events if any single event needs to be retried. But aside from retries, you are correct that deletes should always follow create events. |
Okay, great thanks! It's possible that I was restarting the service when a |
Hello, I am using the Up API to forward data to YNAB. I want to be able to keep track of pending transactions there as well so I can always have the same live balance in YNAB as I do in Up. I noticed today that if I receive a webhook event for
TRANSACTION_DELETED
, although I receive a transaction ID, I am unable to query for more information about that transaction from theGET /transactions/{id}
endpoint as I receive a 404. Intuitively, this does make some sense... however, I am missing information on which account this transaction came from, which is necessary for me to identify the corresponding YNAB transaction and then delete it.How can I know which account a transaction that has been deleted is/was associated with?
Thanks in advance! I'm really enjoying that you have totally changed the game in banking with this API ❤️
The text was updated successfully, but these errors were encountered: