JSON Request Properties

  • FirstName = null (optional, string).. First Name
  • MiddleName = null (optional, string).. Middle name or middle initial
  • LastName = null (optional, string)... Last name
  • Dob = null (optional, string)..Date of birth (format: mm/dd/yyyy).
  • Age = null (optional, int)...Age.
  • Address.AddressLine1 = null (optional, string)..House number and street name or PO Box
  • Address.AddressLine2 = null (optional, string)..State or City and State Or Zip
  • Phone = null (optional, string)...Phone number (formats: ###-###-####, (###)###-####).
  • Email = null (optional, string)..E-mail Address

📘

This code can also be used in various different applications given the amount of information available to you. Some examples of the JSON code for contact enrich common use cases are listed below:

Search with: Name + Phone

{
"FirstName": "John",
"LastName": "Smith",
"Phone":"123-456-7890"
}

Search with: Name + Address

{
"FirstName": "John",
"LastName": "Smith",
"Address": {
"addressLine1":"1234 Main Street",
"addressLine2":"Los Angeles, CA"
	}
}

Search with: Address + Phone

{
"Phone":"123-456-7890",
"Address": {
"addressLine1":"1234 Main Street",
"addressLine2":"Los Angeles, CA"
  }
}

Search with: Name + Address + Phone

{
"FirstName": "John",
"LastName": "Smith",
"Phone":"123-456-7890",
"Address": {
"addressLine1":"1234 Main Street",
"addressLine2":"Los Angeles, CA"
  }
}