• Camera Scanning
  • ID Parsing
  • DIVE
  • Web Services
  • Third Party Checks
  • Authentication
IDScan.net
  • Third Party Checks
  • PEP
  • Test Cases
Search Results for

    Show / Hide Table of Contents
    • Introduction
      • Web Portal
      • Billing Policy
      • Multiple Services Concurrently
      • Common Errors
    • Third Party Checks
      • DMV Data Verification
        • DMV Service Status
        • Test Cases
        • Errors
      • Identifraud
        • Data Sources
        • Identifraud Response
        • Scoring Explained
        • KBA Questions
        • Result Codes
        • Test Cases
        • Errors
      • Sex Offender Registry
        • FAQ
        • Test Cases
        • Errors
      • Criminal Background Check
        • Test Cases
        • Errors
      • PEP
        • Test Cases
      • OFAC
        • Test Cases
      • Every Politician
        • Test Cases
      • Custom List
        • Test Cases
      • Swagger UI

    PEP Test Cases

    You can test your integration with PEP Screening Service by sending one of the special test requests below with your TEST API key. Test requests are free, so you will always be sure that your integration is successful.

    MATCH Profile

    1. For getting usual "Match" profile, send the request data below:
    {
      "firstName": "PEP",
      "lastName": "DEFAULT",
      "dateOfBirths": "1980-10-16",
      "state": "WY",
      "services": [
        "4DF86C8E-B53E-49D6-B75D-C1F2FFCBC1E5"
      ]
    }
    

    You will get this successful response:

    [
      {
        "serviceId": "4df86c8e-b53e-49d6-b75d-c1f2ffcbc1e5",
        "serviceName": "PEP",
        "serviceDescription": "Global database of persons and companies of political, criminal, or economic interest. ",
        "error": null,
        "success": true,
        "locationId": null,
        "readOnlyAccessLocationIds": null,
        "profiles": [
          {
            "internalId": "123456789",
            "firstName": "PEP",
            "middleName": null,
            "lastName": "DEFAULT",
            "fullName": "PEP DEFAULT",
            "dateOfBirths": "10/16/1980",
            "sex": null,
            "address": "TEST PEP Address",
            "countryName": "USA",
            "countryCode": null,
            "street1": null,
            "street2": "",
            "city": null,
            "state": "WY",
            "zipCode": null,
            "county": null,
            "convictiontype": null,
            "aliases": [
              {
                "fullName": null,
                "firstName": "SAMPLE",
                "middleName": null,
                "lastName": "PEP"
              }
            ],
            "offenses": null,
            "photoUrl": null,
            "source": "The System for Award Management (SAM)",
            "otherInformation": null,
            "idNumber": null,
            "verificationResult": null,
            "driverLicenseVerificationResult": null
          },
          {
            "internalId": "7898765",
            "firstName": "PEP",
            "middleName": "Profile",
            "lastName": "DEFAULT",
            "fullName": "PEP Profile DEFAULT",
            "dateOfBirths": "10/16/1980",
            "sex": null,
            "address": "TEST PEP Address",
            "countryName": "USA",
            "countryCode": null,
            "street1": null,
            "street2": "",
            "city": null,
            "state": "WY",
            "zipCode": null,
            "county": null,
            "convictiontype": null,
            "aliases": [
              {
                "fullName": null,
                "firstName": "DEFAULT",
                "middleName": "SAMPLE",
                "lastName": "PEP"
              }
            ],
            "offenses": null,
            "photoUrl": null,
            "source": "Specially Designated Nationals (SDN) - Treasury Department",
            "otherInformation": null,
            "idNumber": null,
            "verificationResult": null,
            "driverLicenseVerificationResult": null
          }
        ]
      }
    ]
    
    In This Article
    • MATCH Profile
    Back to top IDScan.net IDScan.net GitHub