summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libeufin/api-nexus.rst25
1 files changed, 24 insertions, 1 deletions
diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index a4cc9ac7..88ddde3d 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -292,11 +292,34 @@ to the real bank.
the requesting user.
-.. http:post:: {nexusBase}/bank-connections
+.. http:get:: {nexusBase}/bank-connections
List available bank connections.
+.. http:get:: {nexusBase}/bank-connections/{connid}
+
+ Get information about one bank connection.
+
+ .. ts:def:: BankConnectionInfo
+
+ interface BankConnectionInfo {
+ name: string;
+
+ connectionType: string;
+
+ ready: boolean;
+
+ // Did the user review the bank's keys?
+ bankKeysReviewed: boolean;
+ }
+
+
+.. http:post:: {nexusBase}/bank-connections/{connid}/connect
+
+ Initialize the connection by talking to the bank.
+
+
EBICS-specific APIs
-------------------