summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kügel <skuegel@web.de>2021-01-12 18:49:09 +0100
committerStefan Kügel <skuegel@web.de>2021-01-12 18:49:09 +0100
commit6a976e745932ade188bca295058abbe965984184 (patch)
tree60fd0069ee8a551af01e551c5189887f06c06143
parent1f3cc8db0eb61d9cac8c00433cda58d122771eb4 (diff)
parente5a5291bd9aa4aef72029556be79d132029d2ed4 (diff)
downloaddocs-6a976e745932ade188bca295058abbe965984184.tar.gz
docs-6a976e745932ade188bca295058abbe965984184.tar.bz2
docs-6a976e745932ade188bca295058abbe965984184.zip
Merge branch 'master' of ssh://git.taler.net/docs
-rw-r--r--libeufin/api-nexus.rst29
1 files changed, 29 insertions, 0 deletions
diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index ce93f8b1..2d26a227 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -634,6 +634,35 @@ to the real bank.
nexusBankAccountId: string;
}
+
+.. http:get:: <nexus>/bank-connections/{connId}/messages
+
+ List *some* details of all the ISO2022 messages gotten from the bank. It
+ responds with a list of the following elements:
+
+ .. code-block:: ts
+
+ interface BankMessageInfo {
+
+ // the message type, typically how the containing layer
+ // (Ebics, for example) would label this information. For
+ // Camt.053 types, this value is "C53".
+ code: string;
+
+ // the unique identifier of the message.
+ messageId: string;
+
+ // bytes length of the message.
+ length: number;
+ }
+
+
+
+.. http:get:: <nexus>/bank-connections/{connId}/messages/{msgId}
+
+ Return the ISO20022 XML corresponding to ``msgId``.
+
+
Facades
-------