summaryrefslogtreecommitdiff
path: root/libeufin
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-06-19 14:13:06 +0200
committerMS <ms@taler.net>2020-06-19 14:13:06 +0200
commit9609a023ee62932eaa42c1e3db8bda4ddb359c00 (patch)
tree683355e90528d74e4f1cdea31330349529b45dcc /libeufin
parent8a27f027a2ffe42b1ebb4c29aae1dccdcf362cf9 (diff)
downloaddocs-9609a023ee62932eaa42c1e3db8bda4ddb359c00.tar.gz
docs-9609a023ee62932eaa42c1e3db8bda4ddb359c00.tar.bz2
docs-9609a023ee62932eaa42c1e3db8bda4ddb359c00.zip
importing bank accounts API
Diffstat (limited to 'libeufin')
-rw-r--r--libeufin/api-nexus.rst19
1 files changed, 19 insertions, 0 deletions
diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index 5eb8044b..0a56843a 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -327,6 +327,9 @@ to the real bank.
Make a passphrase-encrypted backup of this connection.
+..
+ not implemented.
+
.. http:post:: {nexusBase}/bank-connections/{connid}/accounts/fetch
Update accounts that are accessible via this bank connection.
@@ -336,6 +339,22 @@ to the real bank.
list accounts that are accessible via this bank connection and what
LibEuFin accounts they are connected to.
+.. http:post:: {nexusBase}/bank-connections/{connid}/accounts/import
+
+ Import one bank account, allowing the user to name it.
+
+ .. ts:def:: ImportBankAccount
+
+ interface ImportBankAccount {
+
+ // alphanumeric identifier given by the bank to
+ // the bank account to import.
+ accountId: string;
+
+ // alphanumeric name chosen by the user to identify
+ // locally such imported bank account.
+ localName: string;
+ }
Facades
-------