Skip to main content
Search

TXID Existence Verify Callback

Version: 3.0.0

Method

POST

Url

https://{YOUR_SERVICE_URL}/(TXID exists verify: 9)

This API endpoint is for verify tx id existence, initiator will send you tx id exists verify via GTR, and you have to use tx id + beneficiary address + tag + network to identify one tx id is exists, *The reason using beneficiary address in txId check, is because originator mostly using hot-wallet to make transfer, so that you as originator should using txid + beneficiary address to identify who is originator.

Authentication

No authentication

Path Parameters

No path parameters

Query Parameters

No query parameters

Request Body (Required)

address
OptionalString
Min Length0
Max Length320
addressType
OptionalInteger (int32)
initiatorVasp
OptionalString
network
OptionalString
requestId
OptionalString
Min Length0
Max Length64
Pattern
[\w\d_=-]+
tag
OptionalString
Min Length0
Max Length255
ticker
OptionalString
Min Length0
Max Length32
travelruleId
OptionalString
txId
OptionalString
Min Length1

Responses

Status HTTP Status: 200, VerifyStatus: 200007

TX ID Not found case

JSON Content

[+]data
OptionalObject
verifyMessage
OptionalString
verifyStatus
OptionalInteger (int32)

Status HTTP Status: 200, VerifyStatus: 100000

default response

JSON Content

[+]data
OptionalObject
verifyMessage
OptionalString
verifyStatus
OptionalInteger (int32)

You have to use tx_id + beneficiary_address + tag + network to identify one tx_id exists in your system or not.

The reason using beneficiary_address in txId check is because originator mostly using hot-wallet to make transfer, so that you as originator should use include beneficiary_address in the txId check.

Response Example 1: Success

HTTP Status: 200, VerifyStatus: 100000

This response indicates that this tx_id do exist in your VASP.

{"verifyStatus": 100000,"verifyMessage": "Verify Success"}

Response Example 2: TX ID Not Found

HTTP Status: 200, VerifyStatus: 200007

{"verifyStatus": 200007,"verifyMessage": "TX ID Not Found"}