taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit e41cdf846de639bbb49ffc01ea830689605bccb2
parent eb85a8039af31b547b59cd3e4cd64a943ece7d22
Author: MS <ms@taler.net>
Date:   Fri,  4 Dec 2020 12:52:03 +0100

Align specs to code.

Diffstat:
Mlibeufin/api-sandbox.rst | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/libeufin/api-sandbox.rst b/libeufin/api-sandbox.rst @@ -22,15 +22,28 @@ HTTP API // IBAN that will receive the payment. creditorIban: string; + // FIXME + creditorBic: string; + // FIXME + creditorName: string; // IBAN that will send the payment. debitorIban: string; + // FIXME + debitorBic: string; + // FIXME + debitorName: string; amount: string; currency: string; // subject of the payment. subject: string; + + // Whether the payment is credit or debit *for* the + // account being managed *by* the running sandbox. + // Can take the values: "CRDT" or "DBIT". + direction: string; } ..