gnunet-svn
[Top][All Lists]
Advanced

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

[taler-docs] branch master updated: Access API.


From: gnunet
Subject: [taler-docs] branch master updated: Access API.
Date: Mon, 08 Nov 2021 13:37:16 +0100

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

ms pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new f044a99  Access API.
f044a99 is described below

commit f044a99f79e2937176f10a94de20de1d111851e4
Author: ms <ms@taler.net>
AuthorDate: Mon Nov 8 13:36:17 2021 +0100

    Access API.
---
 core/api-bank-access.rst | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/core/api-bank-access.rst b/core/api-bank-access.rst
index c7da03c..fd7dadf 100644
--- a/core/api-bank-access.rst
+++ b/core/api-bank-access.rst
@@ -129,6 +129,7 @@ name and account password, at least in the GNU Taler demo 
bank implementation.
 .. http:POST:: 
${BANK_API_BASE_URL}/accounts/${account_name}/withdrawals/${withdrawal_id}/confirm
 
   Confirm a withdrawal operation.  Has no effect on an already confirmed 
withdrawal operation.
+  This call is responsible of wiring the funds to the exchange.
 
   **Response**
 
@@ -145,8 +146,9 @@ Transactions
 
 .. http:GET:: ${BANK_API_BASE_URL}/accounts/${account_name}/transactions
 
-   Retrieve all the transactions where the bank account with the label 
``account_name``
-   was debited or credited.
+   Retrieve all the fresh transactions where the bank account with the
+   label ``account_name`` was debited or credited.  A transactions is 'fresh'
+   if it was never included in a "history" type response.
 
    **Request**
   
@@ -154,6 +156,8 @@ Transactions
 
    **Response**
    
+   .. ts:def:: BankAccountTransactionsResponse
+
      interface BankAccountTransactionsResponse {
        transactions: BankAccountTransactionInfo[]; 
      }
@@ -197,16 +201,12 @@ Transactions
    
       interface CreateBankAccountTransactionCreate {
 
-        // All the details corresponding to the wire transfer
-        // to initiate, in the 'payto' format (RFC 8905).
-        // Only: 'iban' authority and 'receiver-name', 'amount',
-        // and 'message' query parameters are accepted.
- 
-        // The following example is accepted:
-        //
-        // 
payto://iban/AB0123456789?receiver-name=Jane%20Doe&message=donation&amount=EUR:1
- 
+        // Support 'iban' and 'x-taler-bank' authorities.  'iban'
+        // target type should specify a BIC too.
         paytoUri: string;
+
+        amount: string; // with currency
+        subject: string;
       }
 
    **Response**

-- 
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]