summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-09-03 17:55:04 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-09-03 17:55:04 +0200
commit08092828cd5de38c2ab46743c05f261380065b37 (patch)
tree5b612e062aabe5b21f772066b5771168a69866a8
parent468bf7ad90c49517ddea5b113f4a6c6e7e71f158 (diff)
downloaddocs-08092828cd5de38c2ab46743c05f261380065b37.tar.gz
docs-08092828cd5de38c2ab46743c05f261380065b37.tar.bz2
docs-08092828cd5de38c2ab46743c05f261380065b37.zip
document API changes for #7275
-rw-r--r--core/api-bank-merchant.rst10
-rw-r--r--core/api-bank-wire.rst22
2 files changed, 21 insertions, 11 deletions
diff --git a/core/api-bank-merchant.rst b/core/api-bank-merchant.rst
index a99705a8..c7b56c09 100644
--- a/core/api-bank-merchant.rst
+++ b/core/api-bank-merchant.rst
@@ -1,6 +1,6 @@
..
This file is part of GNU TALER.
- Copyright (C) 2021 Taler Systems SA
+ Copyright (C) 2021-2023 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
@@ -14,7 +14,7 @@
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
.. _taler-bank-merchant-http-api:
-
+
============================
Taler Bank Merchant HTTP API
============================
@@ -102,6 +102,12 @@ Querying the transaction history
// Array of incoming transactions.
incoming_transactions : MerchantIncomingBankTransaction[];
+ // Payto URI to identify the receiver of funds.
+ // This must be one of the merchant's bank accounts.
+ // Credit account is shared by all incoming transactions
+ // as per the nature of the request.
+ credit_account: string;
+
}
.. ts:def:: MerchantIncomingBankTransaction
diff --git a/core/api-bank-wire.rst b/core/api-bank-wire.rst
index 5ac3a7aa..441537ca 100644
--- a/core/api-bank-wire.rst
+++ b/core/api-bank-wire.rst
@@ -1,6 +1,6 @@
..
This file is part of GNU TALER.
- Copyright (C) 2019-2021 Taler Systems SA
+ Copyright (C) 2019-2023 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free Software
@@ -177,6 +177,12 @@ Querying the transaction history
// Array of incoming transactions.
incoming_transactions : IncomingBankTransaction[];
+ // Payto URI to identify the receiver of funds.
+ // This must be one of the exchange's bank accounts.
+ // Credit account is shared by all incoming transactions
+ // as per the nature of the request.
+ credit_account: string;
+
}
.. ts:def:: IncomingBankTransaction
@@ -200,10 +206,6 @@ Querying the transaction history
// Amount transferred.
amount: Amount;
- // Payto URI to identify the receiver of funds.
- // This must be one of the exchange's bank accounts.
- credit_account: string;
-
// Payto URI to identify the sender of funds.
debit_account: string;
@@ -302,6 +304,12 @@ Querying the transaction history
// Array of outgoing transactions.
outgoing_transactions : OutgoingBankTransaction[];
+ // Payto URI to identify the sender of funds.
+ // This must be one of the exchange's bank accounts.
+ // Credit account is shared by all incoming transactions
+ // as per the nature of the request.
+ debit_account: string;
+
}
.. ts:def:: OutgoingBankTransaction
@@ -320,10 +328,6 @@ Querying the transaction history
// Payto URI to identify the receiver of funds.
credit_account: string;
- // Payto URI to identify the sender of funds.
- // This must be one of the exchange's bank accounts.
- debit_account: string;
-
// The wire transfer ID in the outgoing transaction.
wtid: ShortHashCode;