Update TX ID
This POST /api/verify/outnetwork/update_tx_id endpoint is for the Out-of-Network Travel Rule Initiator VASP to update the TXID after the asset transfer is successfully executed on the blockchain.
Request & Response
When your VASP submitted this asset transfer onto the blockchain, please invoke this endpoint:
curl --silent --location --request POST "/api/verify/outnetwork/update_tx_id" \
--cert-type P12 --cert ./certificate.p12:'[MY_PASSWORD_OF_CERT]' \
--header 'Content-Type: application/json' \
--header "Authorization: Bearer [YOUR LOGIN TOKEN]" \
--header "Connection: keep-alive" \
--data-raw '{
"requestId":" [ORIGINAL REQUEST ID]",
"txId": "[TX ID]"
}'
Response A: Success
After invoking this API, you should get this message.
{
"verifyStatus": 100000,
"verifyMessage": "success",
"success": true
}
Response B: Failure
If your response is not with verifyStatus=100000, please contact the GTR team to check further.