Hey everyone,
I'm using the bunq api (python sdk) to automatically create draft-payments.
It works quite good, but there's one downside.
I have multiple accounts in bunq.
As soon as the draft payment gets created, I try to change the "from" bank account in the bunq app and I'm able to choose any of my accounts.
After accepting the request, the payment is still sent from the initial account, independant of the one that I've chosen.
Is it possible to change the "from" account?
Greetings!
my sample python code:
endpoint.DraftPayment.create(
number_of_required_accepts=1,
status="PENDING",
entries=[
DraftPaymentEntry(
amount=Amount(amount_string, "EUR"),
counterparty_alias=Pointer(type_="IBAN",value=iban,name=recipient),
description=description)
]
)