Skip to main content

PII Verify Fields

Sometimes, companies using GTR Solution must complete personal identity verification in advance. In order to meet the needs of due diligence, we additionally support optional fields called: Verify Fields.

For Travel Rule Request Initiator, they will bring out the fields expectVerifyFields they want to check for verification. And put the expectVerifyFields in request payload, for example:

Initiator API 5: PII Verification, you can bring the parameter

*Travel Rule Request Initiator could be Originator VASP or Beneficiary VASP.

{
"requestId": "[YOUR REQUEST ID]",
"ticker": "ETC",
"address": "0x41ebF291D8BFb6481B4Ab1E26c412A96484b1454",
"tag": "-",
"verifyType": 2,
"network": "xxxxxxxx",
"beneficiaryVasp": "xxxxxxx",
"encryptedPayload": "[YOUR PAYLOAD]",
"originatorPublicKey": "[YOUR PUBLIC KEY]",
"beneficiaryPublicKey": "[BENEFICIARY PUBLIC KEY]",
"fiatName": "USD",
"amount": "1000",
"fiatPrice": "6.66",
"lawThresholdEnabled": true,
"expectVerifyFields": [
"101001", // Originator Legal Person Name
"101004", // Originator Legal Person Authority ID
"100025" // Originator Natural Person Date Of Birth
]
}

For the Target VASP, they need to verify all the fields they can verify and bring out the results. And put the results into stage 3: receive PII results callback, for example: Receiver Callback API 3: PII Verification.

{
"verifyStatus": 100000,
"verifyMessage": "Success",
"data": {
"encryptedPayload": "....",
"verifyFields": [
{
"type": "101001", // Originator Legal Person Name
"status": 1,
"message": "match"
}
]
//...
}
// ...
}

GTR will return based on the fields mentioned by Initiator instead of returning all the verification of the Beneficiary. In other words, the verification field result obtained by Initiator is an Intersection.

For the verifying fields, we provide the list that you could refer to, if the field is not in the list, you still can name it, please use UPPER snake case to name it.

Common Type Name:

NameFATF NameJSON PathGTR Enum
Beneficiary Legal Person NameLegalPersonNamex.ivms101.Beneficiary.beneficiaryPersons[].legalPerson.name.nameIdentifier111001
Beneficiary Natural Person NameNaturalPersonNameIDx.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.name.nameIdentifier110026
Beneficiary Natural Person Local NameLocalNaturalPersonNameIDx.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.name.localNameIdentifier110027
Beneficiary Natural Person Place of BirthPlaceOfBirthx.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.dateAndPlaceOfBirth.placeOfBirth110024
Beneficiary Natural Person Date of BirthDateOfBirthx.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.dateAndPlaceOfBirth.dateOfBirth110025
Beneficiary Natural Person Phonetic NameLocalNaturalPersonNameIDx.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.name.phoneticNameIdentifier110028
Beneficiary Natural Person Country Of ResidenceCountryOfResidencex.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.countryOfResidence110048
Beneficiary Legal Person Country Of RegistrationCountryOfRegistrationx.ivms101.Beneficiary.beneficiaryPersons[].legalPerson.countryOfRegistration111022

*Verify Fields code names are distinguished by Originator/Beneficiary and need to be used in different scenarios.

Status Enum Type:

Status Enum NameStatus Enum Value (Integer)Description
SKIP0Skip verify
MATCH / PASS1Full match Or Pass
MISMATCH2Not match
NOT_SUPPORT3Not support
INFO_MISSING4Info missing
INFO_EXISTS5Received / Exists

The error message will also give the Travel Rule Initiator two forms of information, one is the verification result expected by the Initiator, and the other is the verification result expected by the Receiver.

In Travel Rule Request Initiator

Among them, SKIP, MATCH/PASS, MISMATCH, NOT_SUPPORT will only appear in the expectVerifyFields required by the Initiator. In other words, only the items listed by the Initiator will be returned in the result.

*Travel Rule Request Initiator could be Originator VASP or Beneficiary VASP.

In Travel Rule Request Receiver

Among them, INFO_MISSING and INFO_EXISTS will appear in the information returned by the Receiver. They represent the required information required by the other party's VASP. Regardless of whether the Initiator is included in expectVerifyFields, the results required by the fields will be returned to the Initiator.

*Travel Rule Request Receiver could be Originator VASP or Beneficiary VASP.

You can use the VASP Detail API to query which fields are required by the Receiver, which are presented in the standardVersionRequiredPiiFields field.

You can also check standardVersionSupportedVerifyFields to check which fields Receiver VASP can help you verify.

See: GET /api/vasp/detail

PII Verify Fields Reference Table

Update: 2024 Dec 19

DirectionPerson TypeNameGTR EnumDescriptionFATF NameJSON Path
OriginatorLegal PersonLegal Person Name101001Legal Person NameLegalPersonNamex.ivms101.Originator.originatorPersons[0].legalPerson.name.nameIdentifier
OriginatorLegal PersonLegal Person National Identifier ID Type101002Legal Person National Identifier ID TypeNationalIdentifierTypex.ivms101.Originator.originatorPersons[0].legalPerson.nationalIdentification.nationalIdentifierType
OriginatorLegal PersonLegal Person National Identifier ID101003Legal Person National Identifier IDNationalIdentifierx.ivms101.Originator.originatorPersons[0].legalPerson.nationalIdentification.nationalIdentifier
OriginatorLegal PersonLegal Person National Identifier Registration Authority ID101004Legal Person National Identifier Registration Authority IDRegistrationAuthorityx.ivms101.Originator.originatorPersons[0].legalPerson.nationalIdentification.registrationAuthority
OriginatorLegal PersonLegal Person National Identifier Country of Issue101005Legal Person National Identifier Country of IssueCountryOfIssuex.ivms101.Originator.originatorPersons[0].legalPerson.nationalIdentification.countryOfIssuse
OriginatorLegal PersonLegal Person Customer Identification101006Legal Person Customer IdentificationCustomerIdentificationx.ivms101.Originator.originatorPersons[0].legalPerson.customerIdentification
OriginatorLegal PersonLegal Person Address - Country101007Legal Person Address - CountryCountryx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].country
OriginatorLegal PersonLegal Person Address - Town Name101008Legal Person Address - Town NameTownNamex.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].townName
OriginatorLegal PersonLegal Person Address - Address Lines101009Legal Person Address - Address LinesAddressLinex.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].addressLine
OriginatorLegal PersonLegal Person Address - Department101010Legal Person Address - DepartmentDepartmentx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].department
OriginatorLegal PersonLegal Person Address - Sub Department101011Legal Person Address - Sub DepartmentSubDepartmentx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].subDepartment
OriginatorLegal PersonLegal Person Address - Street101012Legal Person Address - StreetStreetx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].streetName
OriginatorLegal PersonLegal Person Address - Building Number101013Legal Person Address - Building NumberBuildingNumberx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].buildingNumber
OriginatorLegal PersonLegal Person Address - Building Name101014Legal Person Address - Building NameBuildingNamex.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].buildingName
OriginatorLegal PersonLegal Person Address - Floor101015Legal Person Address - FloorFloorx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].floor
OriginatorLegal PersonLegal Person Address - Postbox101016Legal Person Address - PostboxPostboxx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].postBox
OriginatorLegal PersonLegal Person Address - Room101017Legal Person Address - RoomRoomx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].room
OriginatorLegal PersonLegal Person Address - Post Code101018Legal Person Address - Post CodePostCodex.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].postCode
OriginatorLegal PersonLegal Person Address - Town Location101019Legal Person Address - Town LocationTownLocationx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].townLocationName
OriginatorLegal PersonLegal Person Address - District Name101020Legal Person Address - District NameDistrictNamex.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].districtName
OriginatorLegal PersonLegal Person Address - Country of Sub Division101021Legal Person Address - Country of Sub DivisionCountryOfSubDivisionx.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].countrySubDivision
OriginatorLegal PersonLegal Person Country of Registration101022Legal Person Country of RegistrationCountryOfRegistrationx.ivms101.Originator.originatorPersons[0].legalPerson.countryOfRegistration
OriginatorOthersAccount Number103023Account NumberAccountNumberx.ivms101.Originator.accountNumber
OriginatorNatural PersonNatural Person Place of Birth100024Natural Person Place of BirthPlaceOfBirthx.ivms101.Originator.originatorPersons[0].naturalPerson.dateAndPlaceOfBirth.placeOfBirth
OriginatorNatural PersonNatural Person Date of Birth100025Natural Person Date of BirthDateOfBirthx.ivms101.Originator.originatorPersons[0].naturalPerson.dateAndPlaceOfBirth.dateOfBirth
OriginatorNatural PersonNatural Person Name100026Natural Person NameNamex.ivms101.Originator.originatorPersons[0].naturalPerson.name.nameIdentifier
OriginatorNatural PersonNatural Person Local Name100027Natural Person Local NameLocalNamex.ivms101.Originator.originatorPersons[0].naturalPerson.name.localNameIdentifier
OriginatorNatural PersonNatural Person Phonetic Name100028Natural Person Phonetic NamePhoneticNamex.ivms101.Originator.originatorPersons[0].naturalPerson.name.phoneticNameIdentifier
OriginatorNatural PersonNatural Person Address - Country100029Natural Person Address - CountryCountryx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].country
OriginatorNatural PersonNatural Person Address - Town Name100030Natural Person Address - Town NameTownNamex.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].townName
OriginatorNatural PersonNatural Person Address - Address Lines100031Natural Person Address - Address LinesAddressLinex.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].addressLine
OriginatorNatural PersonNatural Person Address - Department100032Natural Person Address - DepartmentDepartmentx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].department
OriginatorNatural PersonNatural Person Address - Sub Department100033Natural Person Address - Sub DepartmentSubDepartmentx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].subDepartment
OriginatorNatural PersonNatural Person Address - Street100034Natural Person Address - StreetStreetx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].streetName
OriginatorNatural PersonNatural Person Address - Building Number100035Natural Person Address - Building NumberBuildingNumberx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].buildingNumber
OriginatorNatural PersonNatural Person Address - Building Name100036Natural Person Address - Building NameBuildingNamex.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].buildingName
OriginatorNatural PersonNatural Person Address - Floor100037Natural Person Address - FloorFloorx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].floor
OriginatorNatural PersonNatural Person Address - Postbox100038Natural Person Address - PostboxPostboxx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].postBox
OriginatorNatural PersonNatural Person Address - Room100039Natural Person Address - RoomRoomx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].room
OriginatorNatural PersonNatural Person Address - Post Code100040Natural Person Address - Post CodePostCodex.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].postCode
OriginatorNatural PersonNatural Person Address - Town Location100041Natural Person Address - Town LocationTownLocationx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].townLocationName
OriginatorNatural PersonNatural Person Address - District Name100042Natural Person Address - District NameDistrictNamex.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].districtName
OriginatorNatural PersonNatural Person Address - Country of Sub Division100043Natural Person Address - Country of Sub DivisionCountryOfSubDivisionx.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].countrySubDivision
OriginatorNatural PersonNatural Person National ID - Type100044Natural Person National ID - TypeNationalIdentifierTypex.ivms101.Originator.originatorPersons[0].naturalPerson.nationalIdentification.nationalIdentifierType
OriginatorNatural PersonNatural Person National ID100045Natural Person National IDNationalIdentifierx.ivms101.Originator.originatorPersons[0].naturalPerson.nationalIdentification.nationalIdentifier
OriginatorNatural PersonNatural Person National ID - Country Of Issue100046Natural Person National ID - Country Of IssueCountryOfIssuex.ivms101.Originator.originatorPersons[0].naturalPerson.nationalIdentification.countryOfIssuse
OriginatorNatural PersonNatural Person Customer ID100047Natural Person Customer IDCustomerIdx.ivms101.Originator.originatorPersons[0].naturalPerson.customerIdentification
OriginatorNatural PersonNatural Person Country of Residence100048Natural Person Country of ResidenceCountryOfResidencex.ivms101.Originator.originatorPersons[0].naturalPerson.countryOfResidence
BeneficiaryLegal PersonLegal Person Name111001Legal Person NameLegalPersonNamex.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.name.nameIdentifier
BeneficiaryLegal PersonLegal Person National Identifier ID Type111002Legal Person National Identifier ID TypeNationalIdentifierTypex.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.nationalIdentification.nationalIdentifierType
BeneficiaryLegal PersonLegal Person National Identifier ID111003Legal Person National Identifier IDNationalIdentifierx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.nationalIdentification.nationalIdentifier
BeneficiaryLegal PersonLegal Person National Identifier Registration Authority ID111004Legal Person National Identifier Registration Authority IDRegistrationAuthorityx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.nationalIdentification.registrationAuthority
BeneficiaryLegal PersonLegal Person National Identifier Country of Issue111005Legal Person National Identifier Country of IssueCountryOfIssuex.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.nationalIdentification.countryOfIssuse
BeneficiaryLegal PersonLegal Person Customer Identification111006Legal Person Customer IdentificationCustomerIdentificationx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.customerIdentification
BeneficiaryLegal PersonLegal Person Address - Country111007Legal Person Address - CountryCountryx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].country
BeneficiaryLegal PersonLegal Person Address - Town Name111008Legal Person Address - Town NameTownNamex.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].townName
BeneficiaryLegal PersonLegal Person Address - Address Lines111009Legal Person Address - Address LinesAddressLinex.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].addressLine
BeneficiaryLegal PersonLegal Person Address - Department111010Legal Person Address - DepartmentDepartmentx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].department
BeneficiaryLegal PersonLegal Person Address - Sub Department111011Legal Person Address - Sub DepartmentSubDepartmentx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].subDepartment
BeneficiaryLegal PersonLegal Person Address - Street111012Legal Person Address - StreetStreetx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].streetName
BeneficiaryLegal PersonLegal Person Address - Building Number111013Legal Person Address - Building NumberBuildingNumberx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].buildingNumber
BeneficiaryLegal PersonLegal Person Address - Building Name111014Legal Person Address - Building NameBuildingNamex.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].buildingName
BeneficiaryLegal PersonLegal Person Address - Floor111015Legal Person Address - FloorFloorx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].floor
BeneficiaryLegal PersonLegal Person Address - Postbox111016Legal Person Address - PostboxPostboxx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].postBox
BeneficiaryLegal PersonLegal Person Address - Room111017Legal Person Address - RoomRoomx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].room
BeneficiaryLegal PersonLegal Person Address - Post Code111018Legal Person Address - Post CodePostCodex.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].postCode
BeneficiaryLegal PersonLegal Person Address - Town Location111019Legal Person Address - Town LocationTownLocationx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].townLocationName
BeneficiaryLegal PersonLegal Person Address - District Name111020Legal Person Address - District NameDistrictNamex.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].districtName
BeneficiaryLegal PersonLegal Person Address - Country of Sub Division111021Legal Person Address - Country of Sub DivisionCountryOfSubDivisionx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].countrySubDivision
BeneficiaryLegal PersonLegal Person Country of Registration111022Legal Person Country of RegistrationCountryOfRegistrationx.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.countryOfRegistration
BeneficiaryOthersAccount Number113023Account NumberAccountNumberx.ivms101.Beneficiary.accountNumber
BeneficiaryNatural PersonNatural Person Place of Birth110024Natural Person Place of BirthPlaceOfBirthx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.dateAndPlaceOfBirth.placeOfBirth
BeneficiaryNatural PersonNatural Person Date of Birth110025Natural Person Date of BirthDateOfBirthx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.dateAndPlaceOfBirth.dateOfBirth
BeneficiaryNatural PersonNatural Person Name110026Natural Person NameNamex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.name.nameIdentifier
BeneficiaryNatural PersonNatural Person Local Name110027Natural Person Local NameLocalNamex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.name.localNameIdentifier
BeneficiaryNatural PersonNatural Person Phonetic Name110028Natural Person Phonetic NamePhoneticNamex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.name.phoneticNameIdentifier
BeneficiaryNatural PersonNatural Person Address - Country110029Natural Person Address - CountryCountryx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].country
BeneficiaryNatural PersonNatural Person Address - Town Name110030Natural Person Address - Town NameTownNamex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].townName
BeneficiaryNatural PersonNatural Person Address - Address Lines110031Natural Person Address - Address LinesAddressLinex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].addressLine
BeneficiaryNatural PersonNatural Person Address - Department110032Natural Person Address - DepartmentDepartmentx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].department
BeneficiaryNatural PersonNatural Person Address - Sub Department110033Natural Person Address - Sub DepartmentSubDepartmentx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].subDepartment
BeneficiaryNatural PersonNatural Person Address - Street110034Natural Person Address - StreetStreetx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].streetName
BeneficiaryNatural PersonNatural Person Address - Building Number110035Natural Person Address - Building NumberBuildingNumberx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].buildingNumber
BeneficiaryNatural PersonNatural Person Address - Building Name110036Natural Person Address - Building NameBuildingNamex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].buildingName
BeneficiaryNatural PersonNatural Person Address - Floor110037Natural Person Address - FloorFloorx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].floor
BeneficiaryNatural PersonNatural Person Address - Postbox110038Natural Person Address - PostboxPostboxx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].postBox
BeneficiaryNatural PersonNatural Person Address - Room110039Natural Person Address - RoomRoomx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].room
BeneficiaryNatural PersonNatural Person Address - Post Code110040Natural Person Address - Post CodePostCodex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].postCode
BeneficiaryNatural PersonNatural Person Address - Town Location110041Natural Person Address - Town LocationTownLocationx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].townLocationName
BeneficiaryNatural PersonNatural Person Address - District Name110042Natural Person Address - District NameDistrictNamex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].districtName
BeneficiaryNatural PersonNatural Person Address - Country of Sub Division110043Natural Person Address - Country of Sub DivisionCountryOfSubDivisionx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].countrySubDivision
BeneficiaryNatural PersonNatural Person National ID - Type110044Natural Person National ID - TypeNationalIdentifierTypex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.nationalIdentification.nationalIdentifierType
BeneficiaryNatural PersonNatural Person National ID110045Natural Person National IDNationalIdentifierx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.nationalIdentification.nationalIdentifier
BeneficiaryNatural PersonNatural Person National ID - Country Of Issue110046Natural Person National ID - Country Of IssueCountryOfIssuex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.nationalIdentification.countryOfIssuse
BeneficiaryNatural PersonNatural Person Customer ID110047Natural Person Customer IDCustomerIdx.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.customerIdentification
BeneficiaryNatural PersonNatural Person Country of Residence110048Natural Person Country of ResidenceCountryOfResidencex.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.countryOfResidence

Copyright (C) 2025 Global Travel Rule. All Rights Reserved
General
Developer