commit 4d960ee29dee29600472d944992eff26debe5c90
parent 9b84eeb8056a3d2262ddeb705abbdd51e9c9c76a
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Fri, 27 Nov 2020 20:16:12 -0500
delete trailing whitespace
Diffstat:
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/libeufin/api-sandbox.rst b/libeufin/api-sandbox.rst
@@ -19,7 +19,7 @@ HTTP API
.. ts:def:: PaymentRequest
interface PaymentRequest {
-
+
// IBAN that will receive the payment.
creditorIban: string;
@@ -37,7 +37,7 @@ HTTP API
Host management.
.. http:post:: /admin/ebics/hosts
-
+
Creates a new Ebics host.
**Request:**
@@ -45,17 +45,17 @@ HTTP API
.. ts:def:: EbicsHostRequest
interface EbicsHostRequest {
-
+
// Ebics version.
hostID: string;
// Name of the host.
ebicsVersion: string;
}
-
+
.. http:get:: /admin/ebics/hosts
-
+
Shows the list of all the hosts existing
in the system.
@@ -64,13 +64,13 @@ HTTP API
.. ts:def:: EbicsHostResponse
interface EbicsHostResponse {
-
+
// shows the host IDs that are active in the system.
// The Ebics version *is* missing, but it's still available
// via the HEV message.
ebicsHosts: string[];
}
-
+
..
Subscriber management.
@@ -84,7 +84,7 @@ HTTP API
.. ts:def:: SubscriberRequest
interface SubscriberRequest {
-
+
// hostID
hostID: string;
@@ -98,7 +98,7 @@ HTTP API
systemID: string;
}
-
+
.. http:get:: /admin/ebics/subscribers
@@ -110,14 +110,14 @@ HTTP API
.. ts:def:: SubscribersResponse
interface SubscribersResponse {
-
+
subscribers: Subscriber[]
}
-
+
.. ts:def:: Subscriber
interface Subscriber {
-
+
// userID
userID: string;