summaryrefslogtreecommitdiff
path: root/core/api-bank-access.rst
diff options
context:
space:
mode:
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;
}