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 (Required)
- Schema
- Example
[+]addressScreeningResult
RequiredObject
Address Screening Result (Only for Premium User)
Example
(Refer to inner structure)
[+]notifyResult
OptionalObject
requestId
OptionalString
{
"addressScreeningResult": "(Refer to inner structure)",
"notifyResult": {
"verifyStage": "string",
"verifyStatus": 0,
"verifyMessage": "string"
},
"requestId": "string"
}
Responses
Status HTTP Status: 200, VerifyStatus: 100000
default response
JSON Content
- Schema
- Example
[+]data
OptionalObject
verifyMessage
OptionalString
verifyStatus
OptionalInteger (int32)
{
"verifyStatus": 100000,
"verifyMessage": "Verify Success"
}