gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-docs] branch master updated: types


From: gnunet
Subject: [taler-docs] branch master updated: types
Date: Wed, 29 Jan 2020 16:45:05 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 53e8d40  types
53e8d40 is described below

commit 53e8d40909a7b6d4f3e0b889fbf77408b5d61c2e
Author: Marcello Stanisci <address@hidden>
AuthorDate: Wed Jan 29 16:44:46 2020 +0100

    types
---
 libeufin/api-nexus.rst | 35 +++++++++++++++++------------------
 1 file changed, 17 insertions(+), 18 deletions(-)

diff --git a/libeufin/api-nexus.rst b/libeufin/api-nexus.rst
index f012579..fb02858 100644
--- a/libeufin/api-nexus.rst
+++ b/libeufin/api-nexus.rst
@@ -64,44 +64,46 @@ Low-level EBICS API
   .. ts:def:: NexusEbicsBackupRequest
     
     interface NexusEbicsBackupRequest {
-    
       passphrase: string;
-
     }
 
 
   .. ts:def:: NexusEbicsBackupResponse
-    
     interface NexusEbicsBackupResponse {
       
       // The three passphrase-protected private keys in the PKCS#8 format
 
-      authBlob: binary;
-      encBlob: binary;
-      sigBlob: binary;
+      authBlob: string; // base64
+      encBlob: string; // base64
+      sigBlob: string; // base64
+      hostID: string;
+      userID: string;
+      partnerID: string;
+      ebicsURL: string;
     }
 
 
 .. http:post:: <nexus>/ebics/subscribers/{id}/restoreBackup
   
-  Ask the server to restore the keys.
+  Ask the server to restore the keys.  Always creates a NEW
+  "{id}" account, and fails if it exists already.
 
   .. ts:def:: NexusEbicsRestoreBackupRequest
-
     interface NexusEbicsRestoreBackupRequest {
       
       // passphrase to decrypt the keys
       passphrase: string;
 
       // The three passphrase-protected private keys in the PKCS#8 format
-      authBlob: binary;
-      encBlob: binary;
-      sigBlob: binary;
+      authBlob: string; // base64
+      encBlob: string; // base64
+      sigBlob: string; // base64
+      hostID: string;
+      userID: string;
+      partnerID: string;
+      ebicsURL: string;
     }
 
-
-
-
   .. ts:def:: NexusEbicsCreateSubscriber
 
 .. http:post:: <nexus>/ebics/subscribers
@@ -129,17 +131,14 @@ Low-level EBICS API
 
   Get details about an EBICS subscriber.
 
-
 .. http:get:: <nexus>/ebics/subscriber/{id}/keyletter
 
-  Get a nicely formatted key letter.  (Does not return JSON, but 
markdown-formatted text)
-
+  Get a formatted letter (mark-down) to confirm keys via ordinary mail.
 
 .. http:post:: <nexus>/ebics/subscriber/{id}/sendIni
 
   Send INI message to the EBICS host.
 
-
 .. http:post:: <nexus>/ebics/subscriber/{id}/sendHia
 
   Send HIA message to the EBICS host.

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]