summaryrefslogtreecommitdiff
path: root/libeufin/api-nexus.rst
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-05-19 18:43:52 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-05-19 18:43:52 +0530
commit5f6914013ddb7e074d9cbaa170b9e895c43f2081 (patch)
tree08b4725866c17b1a5bf2c1f0ca101c61789e55f6 /libeufin/api-nexus.rst
parent1fd82382d882ad68dbcbfca5e4c0b797be715326 (diff)
downloaddocs-5f6914013ddb7e074d9cbaa170b9e895c43f2081.tar.gz
docs-5f6914013ddb7e074d9cbaa170b9e895c43f2081.tar.bz2
docs-5f6914013ddb7e074d9cbaa170b9e895c43f2081.zip
libeufin docs
Diffstat (limited to 'libeufin/api-nexus.rst')
-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
-------------------