Transaction Status Query
Transaction status query API
POST
http://<enclave-endpoint>/v1/verifications/tx/inquiry
A VASP can check a transaction status if it has not received a transaction ID (txHash) report from an originating VASP in a duration.
Request Body
verificationUuid
string
true
“8557f2b2-985e-431f-8d52-75c2e5a01e46”
UUID of completed verification. UUID which was used as a key during /verification process before sending Transaction to the blockchain.
Response Body
Success case
verificationUuid
string
"8557f2b2-985e-431f-8d52-75c2e5a01e46"
true
UUID of completed verification.
transactionStatus
string
"PROCESSING"
true
Transaction Status.
txHash
string
"8a54d58ca4100112a5430818776d74898f2232770bae03046862575cb851a042"
false
TxHash (Transaction ID), Returned only in available.
vout
string
"2"
false
An index value indicating which transfer corresponds to within a single transaction, returned only if exist.
transactionStatus field specification is as follows.
PENDING: Blockchain transaction transmission is blocked for some reason.
PROCESSING: Waiting to be mined after transaction transmission.
WAIT-CONFIRM: The transaction is mined to block but not finalized yet.
CONFIRMED: The finality of the transaction is confirmed after being mined to block.
CANCELED: Blockchain transaction is canceled with or without starting transmission.
Error Codes
Mandatory parameter missing
Invalid verification UUID input
A mismatch of the Ordering VASP with the beneficiary VASP
Last updated