Skip to main content
Search

Update TXID

Version: 3.0.0

Method

POST

Url

https://platform.globaltravelrule.com/api/verify/v2/notify_tx_id

Authentication

No authentication

Path Parameters

No path parameters

Query Parameters

No query parameters

Request Body (Optional)

PropertyTypeRequiredDescription
requestId
StringYes
requestId is the unique id for all transaction, the same travelrule-request invoke process flow should be using same requestId, the recommend format is: "[YOUR_VASP_NAME]-[UUIDv4]"
txId
StringYes
*if the travel rule is after on chain, then the txId is required. the tx id format type can check the table.

Responses

Status 200

OK

JSON Content

PropertyTypeDescription
data
Object
PropertyTypeDescription
No properties
verifyMessage
String
verifyStatus
Integer

Status HTTP Status: 200, VerifyStatus: 100000

Success

JSON Content

PropertyTypeDescription
data
Object
PropertyTypeDescription
No properties
verifyMessage
String
verifyStatus
Integer

In a Travel Rule request, you should call this API to notify the txId to your counterparty after you send crypto asset to the blockchain.

If you decide to cancel this outbound transaction (asset withdrawal) after PII verification passed, please use /end to explicitly terminate the Travel Rule process.

Request Example 1: Update Transaction ID to GTR

{
"requestId": "[requestId]",
"txId": "[txId]"
}

Response Example: Success

HTTP Status: 200, VerifyStatus: 100000

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