summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libeufin/nexus-tutorial.rst33
1 files changed, 27 insertions, 6 deletions
diff --git a/libeufin/nexus-tutorial.rst b/libeufin/nexus-tutorial.rst
index a27483f5..68c52306 100644
--- a/libeufin/nexus-tutorial.rst
+++ b/libeufin/nexus-tutorial.rst
@@ -87,12 +87,13 @@ a backup copy* of such keys.
libeufin-cli \
connections \
- --connection-name $NEXUS_BANK_CONNECTION_NAME \
- --nexus-user-id $NEXUS_USER \
- --nexus-password $NEXUS_PASSWORD \
- --passphrase $SECRET \
- --outputfile $BACKUP_FILE \
- $NEXUS_URL
+ export-backup \
+ --connection-name $NEXUS_BANK_CONNECTION_NAME \
+ --nexus-user-id $NEXUS_USER \
+ --nexus-password $NEXUS_PASSWORD \
+ --passphrase $SECRET \
+ --outputfile $BACKUP_FILE \
+ $NEXUS_URL
At this point, Nexus must communicate all the details to the bank. Therefore,
it will *(5) synchronize the connection*. In this EBICS example, Nexus will send
@@ -189,3 +190,23 @@ Make a payment
==============
TBD.
+
+Restore the backup
+==================
+
+The following command shows how to restore all the details
+associated with one bank connection subscription. For EBICS,
+this means that the INI and HIA secret keys will be restored
+for the requesting user.
+
+.. code-block:: shell
+
+ libeufin-cli \
+ connection \
+ restore-backup \
+ --connection-name $NEXUS_BANK_CONNECTION_NAME \
+ --nexus-user-id $NEXUS_USER \
+ --nexus-password $NEXUS_PASSWORD \
+ --passphrase $SECRET \
+ --outputfile $BACKUP_FILE \
+ $NEXUS_URL