POST / (Step 1-2 - TX ID Verify Callback (After On Chain))
Version: 3.0.0
Url
https://{VASP_SERVICE_URL}/
GTR will send you an request with callback type: 9, you have to verify the tx id is exists in your service, and return by structure of simple result response
Authentication
bearerAuth(http)
Scheme: bearer
Bearer Format: JWT
Path Parameters
No path parameters
Query Parameters
No query parameters
Request Body (Required)
- Schema
- Example
{
"beneficiaryVasp": "string",
"requestId": "string",
"invokeVaspCode": "string",
"callbackData": {
"initiatorVasp": "string",
"ticker": "string",
"address": "string",
"requestId": "AHOnuhzR7XnyEh0bk_DJwUYNckkFyrPiYEnARdcUN-mjDhNlF",
"travelruleId": "string",
"txId": "53ai9gkue=Bafmhw_7sUM8mQh3zOVYNtSlEm5uLTArWBzknDE7sSvFs9U-WYjVoqeiPvl1",
"tag": "string",
"network": "string"
},
"originatorVasp": "string",
"callbackType": 9
}
Responses
Status 200
Please return this response after you verify the tx id
verifyStatus 100000: tx id exists
verifyStatus 200007: tx id does not exists
JSON Content
- Schema
- Example
{
"verifyStatus": 100000,
"verifyMessage": "TX ID Exists"
}