action peoplefinderspro_search {
label: "Search"
description: "###### *Click on the grey search box above, to view sample request/response objects for the Identity Verification Search*\n\nPerform a search:\n\n1. Add your key and key secret to the request headers.\n + galaxy-ap-name: [Key]\n + galaxy-ap-password: [Secret]\n + galaxy-search-type: DevAPIIDVerification\n\n2. Add search criteria to your request. At least two are required: SSN, Name, Phone, Address or Email.\n ~~~html\n {\n \"FirstName\": \"John\",\n \"MiddleName\": \"T\",\n \"LastName\": \"Lawrence\",\n \"Dob\":\"\",\n \"Age\": 0,\n \"Address\": {\n \"addressLine1\":\"123 Q Street, Unit 102\",\n \"addressLine2\":\"Sacramento, CA\"\n },\n \"PhoneNumber\":\"\",\n \"Email\":\"\"\n }\n ~~~\n\n3. Submit your search\n\nA complete list of JSON request properties follows.\n\n+ FirstName= null (optional, string) ... First name.\n\n+ MiddleName = null (optional, string) ... Middle name or middle initial.\n\n+ LastName = null (optional, string) ... Last name.\n\n+ Dob = null (optional, string) ... Date of birth (format: MM/DD/YYYY).\n\n+ Age = null (optional, int) ... Age.\n\n+ Addresses = null (optional, Addresses[]) ... List of addresses.\n + Members\n + AddressLine1 = null (optional, string) ... House number, street name and Unit number (i.e. 123 Q Street, Unit 102) or PO Box (i.e. 1821 Q Street).\n + AddressLine2 = null (optional, string) ... State or City and State or Zip (i.e. Sacramento, CA).\n\n+ Phone = null (optional, string) ... Phone number (formats: ###-###-####, (###) ###-####).\n\n+ Email = null (optional, string) ... E-mail address."
provider: peoplefinderspro
method: POST
path: "/identity/verify_id"
encoding: json
input: {
type: "object"
properties: {
"galaxy-ap-name": {
type: "string"
}
"galaxy-ap-password": {
type: "string"
}
"galaxy-search-type": {
type: "string"
}
}
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}