gnunet-svn
[Top][All Lists]
Advanced

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

[taler-docs] branch master updated (6d94fb3 -> eb79911)


From: gnunet
Subject: [taler-docs] branch master updated (6d94fb3 -> eb79911)
Date: Fri, 20 Jan 2023 15:41:43 +0100

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

ms pushed a change to branch master
in repository docs.

    from 6d94fb3  -succinct field names
     new 804439a  Circuit API.
     new eb79911  typo

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 core/api-bank-access.rst |  2 +-
 libeufin/api-sandbox.rst | 32 ++++++++++++++++++++++++++++++++
 2 files changed, 33 insertions(+), 1 deletion(-)

diff --git a/core/api-bank-access.rst b/core/api-bank-access.rst
index 5028a9f..29b397a 100644
--- a/core/api-bank-access.rst
+++ b/core/api-bank-access.rst
@@ -216,7 +216,7 @@ Transactions
        // $transaction_id from the URI.
        uid: string;
        direction: "DBIT" | "CRDT";
-       date: string; // milliseconsd since the Unix epoch
+       date: string; // milliseconds since the Unix epoch
      }
 
 
diff --git a/libeufin/api-sandbox.rst b/libeufin/api-sandbox.rst
index 88e1bdc..60d1185 100644
--- a/libeufin/api-sandbox.rst
+++ b/libeufin/api-sandbox.rst
@@ -423,6 +423,26 @@ Cashouts
 
      the terms 'sell out' and 'cashout' may be used interchangeably.
 
+.. http:get:: /cashouts
+
+  Returns the list of all the (pending and confirmed) cash-out operations.
+
+  **Response:**
+
+  .. ts:def:: Cashouts
+
+    interface Cashouts {
+      // Every string represents a cash-out operation UUID.
+      cashouts: string[]; 
+    }
+
+  :http:statuscode:`204 No Content`:
+    No cash-out operations were found at the bank
+
+  :http:statuscode:`200 OK`:
+    At least one cash-out operation was found.
+
+
 .. http:get:: /cashouts/$cashoutId
 
   Informs about the status of the ``$cashoutId`` operation.
@@ -439,6 +459,18 @@ Cashouts
     interface CashoutStatusResponse {
 
       status: CashoutStatus;
+      // Amount debited to the circuit bank account.
+      amount_debit: Amount;
+      // Amount credited to the external bank account.
+      amount_credit: Amount;
+      // Transaction subject.
+      subject: string;
+      // Circuit bank account that created the cash-out.
+      account: string;
+      // Time when the cash-out was created.
+      creation_time: number; // milliseconds since the Unix epoch 
+      // Time when the cash-out was confirmed via its TAN.
+      confirmation_time: number; // milliseconds since the Unix epoch 
     }
 
   .. ts:def:: CashoutStatus

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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