commit a1d5601e269dce35367f9ce992d0e95e384b6ce8 parent 4cb865fa92909e39faebcdb0f2d2fc65be33bab2 Author: MS <ms@taler.net> Date: Wed, 10 May 2023 17:53:52 +0200 Access API. How to optionally specify IBAN and name when creating one bank account. Diffstat:
| M | core/api-bank-access.rst | | | 7 | ++++++- |
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/core/api-bank-access.rst b/core/api-bank-access.rst @@ -285,8 +285,13 @@ Registration (Testing) interface BankRegistrationRequest { username: string; - password: string; + // Let the request specify the IBAN. In this current + // version, the IBAN validity is NOT checked by the bank + // backend. When missing, the IBAN is generated by the bank. + iban?: string; + // Name of the person who owns the account being made. + name?: string; }