commit 4aa313c843546f2ec7fabaddf2bc42ce5a2af795 parent 749545b404b015b20cbabb8a670839de3aaf96b8 Author: Florian Dold <florian@dold.me> Date: Thu, 20 May 2021 18:31:56 +0200 document wallet transaction deletion Diffstat:
| M | taler-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 -------