taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 90db63cec04f71a69528fe02bd45cb9b3e5db624
parent f5fd51d99522e9e8d61a3f8af7d345134642568f
Author: Florian Dold <florian@dold.me>
Date:   Thu, 20 May 2021 18:31:56 +0200

document wallet transaction deletion

Diffstat:
Mtaler-wallet.rst | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/taler-wallet.rst b/taler-wallet.rst @@ -486,6 +486,19 @@ Transactions are all operations or events that affect the balance. amountEffective: Amount; } + +:Name: ``"deleteTransaction"`` +:Description: Delete a transaction by ID. +:Request: + .. ts:def:: DeleteTransactionRequest + + interface DeleteTransactionRequest { + // Transaction ID (opaque!) as returned in + // the transaction list response. + transactionId: string; + } +:Response: Returns an empty object + Refunds -------