summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-10-05 18:46:29 +0200
committerMS <ms@taler.net>2020-10-05 18:46:29 +0200
commit788d4aaf34d46104e296d5050db10a5d7d1feced (patch)
treeafecb3399a33f7e909e1ddcf716e49db28d8d631
parent57cea31c02ffd2ca3384aa61758d8ab42985f530 (diff)
downloaddocs-788d4aaf34d46104e296d5050db10a5d7d1feced.tar.gz
docs-788d4aaf34d46104e296d5050db10a5d7d1feced.tar.bz2
docs-788d4aaf34d46104e296d5050db10a5d7d1feced.zip
libeufin howto, more instructions
-rw-r--r--libeufin/nexus-howto.rst41
1 files changed, 41 insertions, 0 deletions
diff --git a/libeufin/nexus-howto.rst b/libeufin/nexus-howto.rst
index b1c78eb6..9ba78df2 100644
--- a/libeufin/nexus-howto.rst
+++ b/libeufin/nexus-howto.rst
@@ -81,6 +81,47 @@ to the bank. Therefore, it will *(4) bootstrap the connection*.
--nexus-password $NEXUS_PASSWORD \
$NEXUS_URL
+Once the connection is bootstrapped, Nexus needs to import locally the data
+corresponding to the bank accounts offered by the bank connection just made.
+The command below *(5) downloads the list of the bank accounts offered by the*
+``$NEXUS_BANK_CONNECTION_NAME``.
+
+.. code-block:: shell
+
+ ./libeufin-cli \
+ connections \
+ download-bank-accounts \
+ --connection-name $NEXUS_BANK_CONNECTION_NAME \
+ --nexus-user-id $NEXUS_USER \
+ --nexus-password $NEXUS_PASSWORD \
+ $NEXUS_URL
+
+It is now possible to *(6) list the accounts offered by the connection*.
+
+.. code-block:: shell
+
+ ./libeufin-cli \
+ connections \
+ list-offered-bank-accounts \
+ --nexus-user-id $NEXUS_USER \
+ --nexus-password $NEXUS_PASSWORD \
+ $NEXUS_URL
+
+Nexus now needs an explicit *(7) import of the accounts it needs to manage*.
+This step is needed to let the user pick a custom name for such accounts.
+
+.. code-block:: shell
+
+ ./libeufin-cli
+ connections \
+ import-bank-account \
+ --connection-name $NEXUS_BANK_CONNECTION_NAME \
+ --nexus-user-id $NEXUS_USER \
+ --nexus-password $NEXUS_PASSWORD \
+ --offered-account-id $ACCOUNT_NATIVE_NAME \
+ --nexus-bank-account-id $CUSTOM_RENAMING_FOR_ACCOUNT \
+ $NEXUS_URL
+
Request history of transactions
===============================