Receiver Update API 1 - Address Verify Result Update
Where should I integrate?
Receiver Update API 1 - Address Verification
This API is for Receiver VASPs who will respond with a pending state to the Travel Rule. It allows you to perform the verification step manually in a separate process.
*If you don't have a pending flow, you can skip this implementation.
To Use
To use this API, the requestId must exist beforehand because someone (Initiator VASP) has initiated the request and is at the address verification stage: callbackType=6. You replied as pending (verifyStatus: 100002), and when you finish the manual verification, reply with the status via this API. GTR will help notify the Initiator VASP.
API Request
POST /api/verify/v2/manual/verify_address
Request Payload - Address Exists:
{
"requestId": "[REQUEST-ID]",
"result": {
"verifyStatus": 100000,
"verifyMessage": "verify success"
}
}
Request Payload - Address Not Found:
{
"requestId": "[REQUEST-ID]",
"result": {
"verifyStatus": 200001,
"verifyMessage": "address not found"
}
}