GlobalSentry

The GlobalSentry service matches transactions against government-provided watch lists that contain data from various countries. These lists include:

  • Denied Persons List (United States)
  • Unverified List (BIS Red Flag) (United States)
  • Consolidated Financial Sanction Targets (Individuals and Entities) (United Kingdom or European Union)
  • Consolidated lists of persons, groups, and entities subject to EU financial sanctions (European Union)
  • DFAT Consolidated List (Australia)
  • OSFI Consolidated List (Individuals and Entities) (Canada)
  • Specially Designated Nationals, Terrorists, Narcotic Traffickers and other Blocked Persons List (United States)
  • Statutorily Debarred Parties List (United States)
  • Politically Exposed Persons (PEP) list
  • The consolidated Sanctions List including all individuals and entities who have been subjected to sanctions by the United Nations Security Council.

Matches are performed against Sanctioned Countries, Name, Address, ID Number and other information such as DOB to provide an "Overall Risk Level Score" that allows your organization to make the right choice before making a decision to block a particular transaction and avoid false positive results.

These steps describe how GlobalSentry processes data:

  1. The service first scans all required data in the transaction to identify countries that have been sanctioned. If a sanction country match has been identified, the transaction bypasses all other matching criteria and is assigned the highest possible risk score.
  2. If a sanctioned country match has not been identified, the service then attempts to match the transaction against the GlobalSentry database using the GlobalSentry Name Check, GlobalSentry Address Check or GlobalSentry ID Number Check subflows.
  3. The GlobalSentry Name Check attempts to match individuals, entities and vessels. If a name match is identified a Name Score is returned from the service.
  4. The GlobalSentry Address Check attempts to match addresses within a country. If an Address match is identified an Address Score is returned from the service.
  5. The GlobalSentry ID Number Check attempts to match identification numbers, such as Passport, National ID, SSN, and Fiscal Code. If an ID Number match is identified an ID Number Score is returned from the service.
  6. If a transaction is not identified as a Name, Address or ID Number match, the transaction record is written to the output and given an overall risk level score of zero.
  7. If a transaction has been identified as a Name, Address or Identification Number match, the service attempts to match those transactions against the GlobalSentry database using the GlobalSentry Other Data Check subflow.
  8. The GlobalSentry Other Data Check attempts to match the Place of Birth, Date of Birth, Nationality or Citizenship. If a match is identified a Place of Birth Score, Date of Birth Score, Nationality Score or Citizenship Score is returned by the service.
  9. GlobalSentry assigns an Overall Risk Level score to each transaction. The score is a value between 0 and 16 and is returned in the OverallRiskLevel field. In calculating the risk level, GlobalSentry takes into account what data was provided in the input record and which inputs, if any, matched entries in the GlobalSentry database. Generally, a higher value indicates a higher risk associated with the transaction.

Resource URL

http://server:port/soap/GlobalSentry

Example

A SOAP request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"​ xmlns:glob="http://www.pb.com/spectrum/services/GlobalSentry">
   <soapenv:Header/>
   <soapenv:Body>
      <glob:GlobalSentryRequest>
         <glob:options/>
         <glob:Input>
            <glob:Row>
               <glob:FirstName>Miguel</glob:FirstName>
               <glob:LastName>Batista</glob:LastName>
            </glob:Row>
         </glob:Input>
      </glob:GlobalSentryRequest>
   </soapenv:Body>
</soapenv:Envelope>
The SOAP response would be:
Note: Empty response elements have been removed from this example. Only the first response record shown.
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:GlobalSentryResponse xmlns:ns2="http://www.pb.com/spectrum/services/GlobalSentry">
         <ns2:Output>
            <ns2:Row>
               <ns2:OverallRiskLevel>10</ns2:OverallRiskLevel>
               <ns2:SanctionedCountryIdentified>No</ns2:SanctionedCountryIdentified>
               <ns2:Status>S</ns2:Status>
               <ns2:FirstName>Miguel</ns2:FirstName>
               <ns2:LastName>Batista</ns2:LastName>
               <ns2:PlaceOfBirth>San Sebastian (Guipuzcoa)  Spain</ns2:PlaceOfBirth>
               <ns2:EntryID>315</ns2:EntryID>
               <ns2:InputFilteredFirstName>Miguel</ns2:InputFilteredFirstName>
               <ns2:InputFilteredLastName>Batista</ns2:InputFilteredLastName>
               <ns2:InputFirstName>Miguel</ns2:InputFirstName>
               <ns2:InputLastName>Batista</ns2:InputLastName>
               <ns2:ListType>DFAT Consolidated List</ns2:ListType>
               <ns2:MatchKey1>MGL</ns2:MatchKey1>
               <ns2:MatchKey2>BTST</ns2:MatchKey2>
               <ns2:NameMatchIdentified>Yes</ns2:NameMatchIdentified>
               <ns2:NameProvided>Yes</ns2:NameProvided>
               <ns2:AddressProvided>No</ns2:AddressProvided>
               <ns2:IDNumberProvided>No</ns2:IDNumberProvided>
               <ns2:AddressMatchIdentified>No</ns2:AddressMatchIdentified>
               <ns2:IDNumberMatchIdentified>No</ns2:IDNumberMatchIdentified>
               <ns2:CitizenshipScore>0</ns2:CitizenshipScore>
               <ns2:CitizenshipMatchIdentified>No</ns2:CitizenshipMatchIdentified>
               <ns2:DOBScore>0</ns2:DOBScore>
               <ns2:DOBMatchIdentified>No</ns2:DOBMatchIdentified>
               <ns2:NationalityScore>0</ns2:NationalityScore>
               <ns2:NationalityMatchIdentified>No</ns2:NationalityMatchIdentified>
               <ns2:PlaceOfBirthScore>0</ns2:PlaceOfBirthScore>
               <ns2:PlaceOfBirthMatchIdentified>No</ns2:PlaceOfBirthMatchIdentified>
               <ns2:CitizenshipProvided>No</ns2:CitizenshipProvided>
               <ns2:DOBProvided>No</ns2:DOBProvided>
               <ns2:NationalityProvided>No</ns2:NationalityProvided>
               <ns2:PlaceOfBirthProvided>No</ns2:PlaceOfBirthProvided>
               <ns2:WatchListFirstName>Miguel</ns2:WatchListFirstName>
               <ns2:WatchListLastName>ALBISU IRIARTE</ns2:WatchListLastName>
               <ns2:NameScore>100</ns2:NameScore>
               <ns2:user_fields/>
            </ns2:Row>
         </ns2:Output>
      </ns2:GlobalSentryResponse>
   </soap:Body>
   </soap:Envelope>