gnunet-svn
[Top][All Lists]
Advanced

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

[taler-docs] branch master updated: facades docs


From: gnunet
Subject: [taler-docs] branch master updated: facades docs
Date: Tue, 19 May 2020 16:15:54 +0200

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

dold pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 6a6d055  facades docs
6a6d055 is described below

commit 6a6d05514267cd04fdd10bc1414a327f7aa273e8
Author: Florian Dold <address@hidden>
AuthorDate: Tue May 19 19:45:06 2020 +0530

    facades docs
---
 libeufin/api-nexus.rst | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index 4b721ee..b0ea56c 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -333,6 +333,47 @@ to the real bank.
    LibEuFin accounts they are connected to.
 
 
+Facades
+-------
+
+.. http:get:: <nexus>/facades
+
+  List available facades.  
+
+.. http:get:: <nexus>/facade/${fcid}
+
+  Get details about a facade.
+
+  .. ts:def:: FacadeInfo
+     
+     interface FacadeInfo {
+        // Name of the facade, same as the "fcid" parameter.
+        name: string;
+
+        // Type of the facade.
+        // For example, "taler-wire-gateway".
+        type: string;
+
+        // Name of the user that created the facade.
+        // Whenever the facade accesses a resource it is allowed to
+        // access, the creator must *also* have access to that resource.
+        creator: string;
+
+        // Bank accounts that the facade has read/write
+        // access to.
+        bankAccountsRead: string[];
+        bankAccountsWrite: string[];
+
+        // Bank connections that the facade has read/write
+        // access to.
+        bankConnectionsRead: string[];
+        bankConnectionsWrite: string[];
+
+        // Facade-specific configuration details.
+        config: any;
+     }
+
+
 EBICS-specific APIs
 -------------------
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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