commit d16b9adcef17e5f9236bc89d610ad67909f97f96
parent 570f05fee064149c5c639198f71076de378a0b16
Author: ms <ms@taler.net>
Date: Mon, 31 Jan 2022 08:29:44 +0100
payto format at Sandbox
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/core/api-bank-access.rst b/core/api-bank-access.rst
@@ -226,13 +226,13 @@ Transactions
interface CreateBankAccountTransactionCreate {
+ // It needs at least the 'message' query string parameter.
paytoUri: string;
- // The following two fields are optional. However,
- // when not given, their value must occupy the 'amount'
- // and 'message' query string values of the 'payto' field.
- amount: string; // with currency
- subject: string;
+ // Transaction amount (in the $currency:x.y format), optional.
+ // However, when not given, its value must occupy the 'amount'
+ // query string parameter of the 'payto' field.
+ amount: string;
}
**Response**