summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-05-20 18:31:56 +0200
committerFlorian Dold <florian@dold.me>2021-05-25 13:47:53 +0200
commit90db63cec04f71a69528fe02bd45cb9b3e5db624 (patch)
treeef3cfffa9e6610c30c8dad762d19688f52279975
parentf5fd51d99522e9e8d61a3f8af7d345134642568f (diff)
downloaddocs-90db63cec04f71a69528fe02bd45cb9b3e5db624.tar.gz
docs-90db63cec04f71a69528fe02bd45cb9b3e5db624.tar.bz2
docs-90db63cec04f71a69528fe02bd45cb9b3e5db624.zip
document wallet transaction deletion
-rw-r--r--taler-wallet.rst13
1 files changed, 13 insertions, 0 deletions
diff --git a/taler-wallet.rst b/taler-wallet.rst
index be471446..4de69520 100644
--- 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
-------