Skip to main content
Search

Address Existence Verify Callback

Version: 3.0.0

Method

POST

Url

https://{YOUR_SERVICE_URL}/(address exists verify: 6)

This API endpoint is for address verification. The initiator will send a verification request via GTR. You need to verify whether the address belongs to your service. Please note that if the tag is null, it should be treated as empty or not used as a search condition for your service. The address refers to the beneficiary address. Please return this response after you verify the address. verifyStatus: 100000 - Address Exists (Success) verifyStatus: 200001 - Address/Tag Not Found

Authentication

No authentication

Path Parameters

No path parameters

Query Parameters

No query parameters

Request Body (Required)

address
OptionalString
Min Length0
Max Length320
addressType
OptionalInteger (int32)
initiatorVasp
OptionalString
network
OptionalString
originatorVasp
OptionalString
originatorVaspName
OptionalString
requestId
OptionalString
tag
OptionalString
Min Length0
Max Length255
ticker
OptionalString
Min Length0
Max Length32
travelruleId
OptionalString

Responses

Status HTTP Status: 200, VerifyStatus: 200001

Address not found case

JSON Content

[+]data
OptionalObject
verifyMessage
OptionalString
verifyStatus
OptionalInteger (int32)

Status HTTP Status: 200, VerifyStatus: 100000

Success case

JSON Content

[+]data
OptionalObject
verifyMessage
OptionalString
verifyStatus
OptionalInteger (int32)

Note: If tag is null, treat it as empty or exclude it from your search criteria.

Response Example 1: Success

HTTP Status: 200, VerifyStatus: 100000

{"verifyStatus": 100000,"verifyMessage": "Verify Success"}

This response indicates that the address do exist in your service.

Response Example 2:Address Not Found

HTTP Status: 200, VerifyStatus: 200001

{"verifyStatus": 200001,"verifyMessage": "Address Not Found."}