summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;