commit 788d4aaf34d46104e296d5050db10a5d7d1feced parent 57cea31c02ffd2ca3384aa61758d8ab42985f530 Author: MS <ms@taler.net> Date: Mon, 5 Oct 2020 18:46:29 +0200 libeufin howto, more instructions Diffstat:
| M | libeufin/nexus-howto.rst | | | 41 | +++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 41 insertions(+), 0 deletions(-)
diff --git 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 ===============================