commit 11429c8ff2ad88010c7be1b01d9144041089a32a
parent f82872ca7ceb404118c269d0b2b4aa47366d8d8d
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 16 Feb 2025 11:40:28 +0100
better terminology
Diffstat:
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
@@ -6165,10 +6165,10 @@ and freeze or unfreeze accounts suspected of money laundering.
}
-.. http:get:: /aml/$OFFICER_PUB/transactions-credit
-.. http:get:: /aml/$OFFICER_PUB/transactions-debit
+.. http:get:: /aml/$OFFICER_PUB/transfers-credit
+.. http:get:: /aml/$OFFICER_PUB/transfers-debit
- Obtain exchange's bank account transaction history data. Shows effective
+ Obtain exchange's bank account wire transfer history data. Shows effective
incoming wire transfers or (credit) effective outgoing (aggregated, closed)
wire transfers (debit). Note that KYC auth wire transfers, bounced incoming
wire transfers and drain outgoing wire transfers requests are excluded (as
@@ -6201,7 +6201,7 @@ and freeze or unfreeze accounts suspected of money laundering.
**Response:**
:http:statuscode:`200 OK`:
- The responds will be an `ExchangeTransactionList` message.
+ The responds will be an `ExchangeTransferList` message.
:http:statuscode:`204 No content`:
There are no matching transactions.
:http:statuscode:`403 Forbidden`:
@@ -6211,18 +6211,18 @@ and freeze or unfreeze accounts suspected of money laundering.
:http:statuscode:`409 Conflict`:
The designated AML account is not enabled.
- .. ts:def:: ExchangeTransactionList
+ .. ts:def:: ExchangeTransferList
- interface ExchangeTransactionList {
+ interface ExchangeTransferList {
// Matching transaction of the exchange
- details: ExchangeTransactionListEntry[];
+ details: ExchangeTransferListEntry[];
}
- .. ts:def:: ExchangeTransactionListEntry
+ .. ts:def:: ExchangeTransferListEntry
- interface ExchangeTransactionListEntry {
+ interface ExchangeTransferListEntry {
// Row ID of the record. Used to filter by offset.
rowid: Integer;
@@ -6233,7 +6233,7 @@ and freeze or unfreeze accounts suspected of money laundering.
// The amount involved.
amount: Amount;
- // Time when the transaction was made
+ // Time when the transfer was made
execution_time: Timestamp;
}