-
-
Notifications
You must be signed in to change notification settings - Fork 625
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
Flip amount option with GoCardless #261
Comments
I would recommend first reaching out to GoCardless and letting them know of this inconsistency. They are pretty quick to respond and resolve issues. Let me know what they say! |
@MatissJanis here is what they came back with:
{
"balances": [
{
"balanceAmount": {
"amount": "4183.61",
"currency": "GBP"
},
"balanceType": "interimAvailable",
"referenceDate": "2023-09-05"
},
{
"balanceAmount": {
"amount": "-316.39",
"currency": "GBP"
},
"balanceType": "interimBooked",
"referenceDate": "2023-09-05"
}
]
} It looks like Actual is using |
Interesting. Yea, we might not be properly handling credit cards. Or perhaps just your banks credit cards.. I don't have a CC, so can't check what I would get on my end sadly. The bank adapters can be found here: https://github.com/actualbudget/actual-server/tree/master/src/app-gocardless/banks Worst case: you can add a custom adapter specifically for your bank. |
I can confirm this is the same with Santander UK credit cards ( |
I'll make some time to play around with this and see if I can implement a generic solution that will check for interimBooked, specifically for credit cards. Otherwise, custom bank adapter it is. |
I am having the same issue with
Here is an example payment made to the credit card, which should be positive (but is negative in the json from gocardless)
I see @walleb already made a bank adapter for |
It looks like the same is occurring with SEB Invited credit card (using SEB Card Accounts) in Sweden. |
How can we add a custom adapter? |
https://github.com/actualbudget/actual-server/blob/master/src/app-gocardless/README.md |
Thank you for your reply. How could I do this using the docker container while keeping it resistant to updates? |
You could either make a PR upstream or create a Docker image yourself with your applied changes |
HSBC UK credit card transactions synced with GoCardless show a positive balance, which is actually the remaining credit limit. Other credit cards like Amex and Barclaycard correctly show a negative balance. Is there a way to use the "flip amount" feature with GoCardless account sync?
The text was updated successfully, but these errors were encountered: