summaryrefslogtreecommitdiff
path: root/libeufin
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2020-11-27 20:16:12 -0500
committerThien-Thi Nguyen <ttn@gnuvola.org>2020-11-27 20:16:12 -0500
commit4d960ee29dee29600472d944992eff26debe5c90 (patch)
tree386e30143ab27a1a76bafe287225338f271ebb3e /libeufin
parent9b84eeb8056a3d2262ddeb705abbdd51e9c9c76a (diff)
downloaddocs-4d960ee29dee29600472d944992eff26debe5c90.tar.gz
docs-4d960ee29dee29600472d944992eff26debe5c90.tar.bz2
docs-4d960ee29dee29600472d944992eff26debe5c90.zip
delete trailing whitespace
Diffstat (limited to 'libeufin')
-rw-r--r--libeufin/api-sandbox.rst24
1 files changed, 12 insertions, 12 deletions
diff --git a/libeufin/api-sandbox.rst b/libeufin/api-sandbox.rst
index f75c76e0..fd69405b 100644
--- 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;