Get TXID Notify
Method
POST
Url
https://{YOUR_SERVICE_URL}/(receive_tx_id_update: 5)
This API endpoint is for inform you the relation of tx id and travel rule, When initiator transfer assets on chain, they will provide you the txId and the request id that they done the PII verification(travel rule) before, so that you can mapping to your service
Authentication
No authentication
Path Parameters
No path parameters
Query Parameters
No query parameters
Request Body (Optional)
- Schema
- Example
requestId
RequiredString
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]"
Min Length4
Max Length64
Pattern
[\w\d_=-]+
Example
testexchange-189e9948-64c7-4a6c-bb4f-859c173321c5
txId
RequiredString
Min Length0
Max Length256
{
"requestId": "testexchange-189e9948-64c7-4a6c-bb4f-859c173321c5",
"txId": "string"
}
Responses
Status 200
OK
JSON Content
- Schema
- Example
verifyMessage
OptionalString
verifyStatus
RequiredInteger (int32)
VerifyStatus
Example
100000
{
"verifyStatus": 100000,
"verifyMessage": "string"
}
Status HTTP Status: 200, VerifyStatus: 100000
JSON Content
- Schema
- Example
[+]data
OptionalObject
verifyMessage
OptionalString
verifyStatus
RequiredInteger (int32)
VerifyStatus
Example
100000
{
"data": {},
"verifyStatus": 100000,
"verifyMessage": "string"
}