gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-docs] branch master updated: account import API


From: gnunet
Subject: [taler-docs] branch master updated: account import API
Date: Sun, 21 Jun 2020 00:18:04 +0200

This is an automated email from the git hooks/post-receive script.

ms pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 16d342d  account import API
16d342d is described below

commit 16d342d5adbef75e2182d0668f9ecbf97b70aa02
Author: MS <ms@taler.net>
AuthorDate: Sun Jun 21 00:17:54 2020 +0200

    account import API
---
 libeufin/api-nexus.rst | 43 +++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 41 insertions(+), 2 deletions(-)

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index 0a56843..1e713fd 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -336,8 +336,47 @@ to the real bank.
 
 .. http:get:: {nexusBase}/bank-connections/{connid}/accounts
 
-   list accounts that are accessible via this bank connection and what
-   LibEuFin accounts they are connected to.
+   List the bank accounts that are downloaded into this bank connection
+   but aren't imported yet:
+
+  .. ts:def:: BankAccount
+
+     interface BankAccount {
+       
+       // iban
+       iban: string;
+
+       // bic
+       bic: string;
+
+       // account holder
+       holder: string;
+
+       // account label as given by the bank
+       account: string;
+     }
+
+.. http:get:: {nexusBase}/bank-connections/{connid}/accounts/imported
+
+   List the bank accounts that were imported under this bank connection:
+
+  .. ts:def:: BankAccount
+
+     interface BankAccount {
+       
+       // iban
+       iban: string;
+
+       // bic
+       bic: string;
+
+       // account holder
+       holder: string;
+
+       // custom account label as given by the user
+       account: string;
+     }
+
 
 .. http:post:: {nexusBase}/bank-connections/{connid}/accounts/import
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]