Wallet Verify Result Notify
Method
POST
Url
https://{YOUR_SERVICE_URL}/(wallet_verify_result_notify: 18)
This API endpoint is responsible for receiving notifications about the completion of beneficiary wallet controllership. When receiver(beneficiary) done with sign the message, it notify via GTR to your service and let you know the status.
Authentication
No authentication
Path Parameters
No path parameters
Query Parameters
No query parameters
Request Body (Optional)
- Schema
- Example
[+]notifyResult
RequiredObject
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 Length0
Max Length64
Pattern
[\w\d_=-]+
Example
testexchange-189e9948-64c7-4a6c-bb4f-859c173321c5
{
"notifyResult": {
"verifyStage": "PII_VERIFICATION",
"verifyStatus": 100000,
"verifyMessage": "Success, Thank you!"
},
"requestId": "testexchange-189e9948-64c7-4a6c-bb4f-859c173321c5"
}
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"
}