commit 1e61260c349244ef21795607517b2115d90f7938 parent 51ddd2302eefe9de62afe9a484b51f68899aea50 Author: Florian Dold <florian@dold.me> Date: Mon, 18 Jan 2021 22:21:08 +0100 document deposit group creation Diffstat:
| M | taler-wallet.rst | | | 24 | ++++++++++++++++++++++++ |
1 file changed, 24 insertions(+), 0 deletions(-)
diff --git a/taler-wallet.rst b/taler-wallet.rst @@ -741,6 +741,30 @@ Accept Manual Withdrawal exchangePaytoUris: string[]; } +Deposits +-------- + +Deposits are direct payments into a payment target (given via +a payto URI). They don't involve a merchant. + +:Name: ``"createDepositGroup"`` +:Description: + Deposit funds directly into a payment target. +:Request: + .. ts:def:: CreateDepositGroupRequest + + interface CreateDepositGroupRequest { + depositPaytoUri: string; + amount: AmountString; + } +:Response: + .. ts:def:: CreateDepositGroupResponse + + interface CreateDepositGroupResponse { + depositGroupId: string; + } + + Payments --------