taler-docs

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

commit a44ffa831b04b723f5cca7964ec0ac50718fdcf8
parent 34bd4398b0b2b6c0db23f48b60047c0fe43cd452
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 17 Oct 2021 12:51:35 +0200

avoid returning information the client no longer needs

Diffstat:
Mcore/api-exchange.rst | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/core/api-exchange.rst b/core/api-exchange.rst @@ -2560,11 +2560,6 @@ typically also view the balance.) interface TrackTransactionResponse { - // Payment target that the merchant should - // use to check for its KYC status using - // the ``/kyc-check/$PAYMENT_TARGET_UUID`` endpoint. - payment_target_uuid: Integer; - // Raw wire transfer identifier of the deposit. wtid: Base32; @@ -2598,7 +2593,12 @@ typically also view the balance.) // the ``/kyc-check/$PAYMENT_TARGET_UUID`` endpoint. payment_target_uuid: Integer; + // True if the KYC check for the merchant has been + // satisfied. + kyc_ok: boolean; + // Time by which the exchange currently thinks the deposit will be executed. + // Actual execution may be later if the KYC check is not satisfied by then. execution_time: Timestamp; }