From 788d4aaf34d46104e296d5050db10a5d7d1feced Mon Sep 17 00:00:00 2001 From: MS Date: Mon, 5 Oct 2020 18:46:29 +0200 Subject: libeufin howto, more instructions --- libeufin/nexus-howto.rst | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) 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 =============================== -- cgit v1.2.3