summaryrefslogtreecommitdiff
path: root/core/api-exchange.rst
diff options
context:
space:
mode:
Diffstat (limited to 'core/api-exchange.rst')
-rw-r--r--core/api-exchange.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
index aa371f93..49f29da5 100644
--- 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;
}