summaryrefslogtreecommitdiff
path: root/core/api-bank-access.rst
diff options
context:
space:
mode:
authorMS <ms@taler.net>2023-05-10 17:53:52 +0200
committerMS <ms@taler.net>2023-05-10 17:53:52 +0200
commita1d5601e269dce35367f9ce992d0e95e384b6ce8 (patch)
tree37eca5398880aefbee4e887d695fd141093a003e /core/api-bank-access.rst
parent4cb865fa92909e39faebcdb0f2d2fc65be33bab2 (diff)
downloaddocs-a1d5601e269dce35367f9ce992d0e95e384b6ce8.tar.gz
docs-a1d5601e269dce35367f9ce992d0e95e384b6ce8.tar.bz2
docs-a1d5601e269dce35367f9ce992d0e95e384b6ce8.zip
Access API.
How to optionally specify IBAN and name when creating one bank account.
Diffstat (limited to 'core/api-bank-access.rst')
-rw-r--r--core/api-bank-access.rst7
1 files changed, 6 insertions, 1 deletions
diff --git a/core/api-bank-access.rst b/core/api-bank-access.rst
index 845d2d2d..2bb8a6ba 100644
--- 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;
}