summaryrefslogtreecommitdiff
path: root/libeufin
diff options
context:
space:
mode:
Diffstat (limited to 'libeufin')
-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
===============================