summaryrefslogtreecommitdiff
path: root/cli/python/libeufin-cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli/python/libeufin-cli')
-rwxr-xr-xcli/python/libeufin-cli19
1 files changed, 19 insertions, 0 deletions
diff --git a/cli/python/libeufin-cli b/cli/python/libeufin-cli
index b8917155..72a2d449 100755
--- a/cli/python/libeufin-cli
+++ b/cli/python/libeufin-cli
@@ -427,6 +427,25 @@ def crz(obj, account_id, date_range, nexus_base_url):
resp = post(url, json=req)
print(resp.content.decode("utf-8"))
+@taler.command(help="Trigger refunds for invalid incoming transactions")
+@click.pass_obj
+@click.option(
+ "--account-id",
+ help="Numerical ID of the customer at the Nexus",
+ required=True
+)
+@click.option(
+ "--bank-account-id",
+ help="Token that identifies one bank account belonging to --account-id",
+ required=True
+)
+@click.argument(
+ "nexus-base-url"
+)
+def refund(ctx, account_id, bank_account_id, nexus_base_url):
+
+
+
@taler.command(help="Separate payments with Taler-subject from the rest")
@click.pass_obj
@click.option(