taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 9609a023ee62932eaa42c1e3db8bda4ddb359c00
parent 8a27f027a2ffe42b1ebb4c29aae1dccdcf362cf9
Author: MS <ms@taler.net>
Date:   Fri, 19 Jun 2020 14:13:06 +0200

importing bank accounts API

Diffstat:
Mlibeufin/api-nexus.rst | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git 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 -------