People Business Search#
Introduction#
- People Business Search can:
Search for individuals and businesses across the US.
Perform searches with partial/limited information on the address, name or company to correct records that would otherwise be unresolvable.
Locate individuals for billing purposes, such as tracking down people who have skipped out on their bills.
Validate policyholder addresses before issuing policies, to reduce the risk of fraud and errors.
Find potential customers by targeting your marketing campaigns to specific locations.
Retrieve contact phone information for an individual or business.
Click here to learn more about the People Business Search Cloud API.
Licensing#
The License Key is a software key required to use the web service. You will receive your license key from your Melissa representative. If you don’t have a license key, contact the Melissa sales team at Sales@Melissa.com or 800-MELISSA ext. 3 (800-635-4772 ext. 3). Without a license key, People Business Search will not function.
Initialization#
There are two different constructors that you can utilize when initializing People Business Search.
PeopleBusinessSearch(string license)
Initialize the Cloud API object with a license key
PeopleBusinessSearch peopleBusiness = new PeopleBusinessSearch(MELISSA_LICENSE_KEY);
people_business = PeopleBusinessSearch(MELISSA_LICENSE_KEY)
Initialize the Cloud API object, which will read the license key from the environment variable MD_LICENSE or configured using a set method
Click here to learn more about setting up the environment variable.
PeopleBusinessSearch peopleBusiness = new PeopleBusinessSearch()
people_business = PeopleBusinessSearch()
Configuration#
People Business Search supports both GET and POST requests.
(GET) Using one of three ways to configure each respective parameter
(POST) Using the Set Post Body Method to pass a PeopleBusinessSearchPostRequest object as the pre-constructed post body containing all parameters and records to process
Requests#
GET#
To send a GET request, there are three ways you can configure the parameters to make a request.
Method 1: Using the Set Value Method to specify the parameter and value you want to set it to
Method 2: Using direct property access to set parameter values
Method 3: Using specialized Set Methods to set parameter values
Method 1: Using Set Value Method#
This function allows you to specify input parameters and the values you went to set them to.
Format
peopleBusiness.SetValue("MaxRecords", MAX_RECORDS);
peopleBusiness.SetValue("MatchLevel", MATCH_LEVEL);
peopleBusiness.SetValue("AddressLine1", ADDRESS_LINE_1);
peopleBusiness.SetValue("Locality", LOCALITY);
peopleBusiness.SetValue("AdministrativeArea", ADMINISTRATIVE_AREA);
peopleBusiness.SetValue("Postal", POSTAL_CODE);
peopleBusiness.SetValue("AnyName", ANY_NAME);
people_business.set_value("max_records", MAX_RECORDS)
people_business.set_value("match_level", MATCH_LEVEL)
people_business.set_value("address_line_1", ADDRESS_LINE_1)
people_business.set_value("locality", LOCALITY)
people_business.set_value("administrative_area", ADMINISTRATIVE_AREA)
people_business.set_value("postal", POSTAL_CODE)
people_business.set_value("any_name", ANY_NAME)
Example
peopleBusiness.SetValue("MaxRecords", "10");
peopleBusiness.SetValue("MatchLevel", "10");
peopleBusiness.SetValue("AddressLine1", "22382 Avenida Empresa");
peopleBusiness.SetValue("Locality", "RSM");
peopleBusiness.SetValue("AdministrativeArea", "CA");
peopleBusiness.SetValue("Postal", "92688");
peopleBusiness.SetValue("AnyName", "Melissa Data");
people_business.set_value("max_records", "10")
people_business.set_value("match_level", "10")
people_business.set_value("address_line_1", "22382 Avenida Empresa")
people_business.set_value("locality", "RSM")
people_business.set_value("administrative_area", "CA")
people_business.set_value("postal", "92688")
people_business.set_value("any_name", "Melissa Data")
Method 2: Using Direct Property Access#
This allows you to set values directly using the Cloud API’s parameter names.
Format
peopleBusiness.MaxRecords = MAX_RECORDS;
peopleBusiness.MatchLevel = MATCH_LEVEL;
peopleBusiness.AddressLine1 = ADDRESS_LINE_1;
peopleBusiness.Locality = LOCALITY;
peopleBusiness.AdministrativeArea = ADMINISTRATIVE_AREA;
peopleBusiness.Postal = POSTAL_CODE;
peopleBusiness.AnyName = ANY_NAME;
people_business.max_records = MAX_RECORDS
people_business.match_level = MATCH_LEVEL
people_business.address_line_1 = ADDRESS_LINE_1
people_business.locality = LOCALITY
people_business.administrative_area = ADMINISTRATIVE_AREA
people_business.postal = POSTAL_CODE
people_business.any_name = ANY_NAME
Example
peopleBusiness.MaxRecords = "10";
peopleBusiness.MatchLevel = "10";
peopleBusiness.AddressLine1 = "22382 Avenida Empresa";
peopleBusiness.Locality = "RSM";
peopleBusiness.AdministrativeArea = "CA";
peopleBusiness.Postal = "92688";
peopleBusiness.AnyName = "Melissa Data";
people_business.max_records = "10"
people_business.match_level = "10"
people_business.address_line_1 = "22382 Avenida Empresa"
people_business.locality = "RSM"
people_business.administrative_area = "CA"
people_business.postal = "92688"
people_business.any_name = "Melissa Data"
Method 3: Using Specialized Methods#
These functions allow you to set the input parameters for the Cloud API.
See Set Methods for a list of available parameters.
Format
peopleBusiness.SetMaxRecords(MAX_RECORDS);
peopleBusiness.SetMatchLevel(MATCH_LEVEL);
peopleBusiness.SetAddressLine1(ADDRESS_LINE_1);
peopleBusiness.SetLocality(LOCALITY);
peopleBusiness.SetAdministrativeArea(ADMINISTRATIVE_AREA);
peopleBusiness.SetPostal(POSTAL_CODE);
peopleBusiness.SetAnyName(ANY_NAME);
people_business.set_max_records(MAX_RECORDS)
people_business.set_match_level(MATCH_LEVEL)
people_business.set_address_line_1(ADDRESS_LINE_1)
people_business.set_locality(LOCALITY)
people_business.set_administrative_area(ADMINISTRATIVE_AREA)
people_business.set_postal(POSTAL_CODE)
people_business.set_any_name(ANY_NAME)
Example
peopleBusiness.SetMaxRecords("10");
peopleBusiness.SetMatchLevel("10");
peopleBusiness.SetAddressLine1("22382 Avenida Empresa");
peopleBusiness.SetLocality("RSM");
peopleBusiness.SetAdministrativeArea("CA");
peopleBusiness.SetPostal("92688");
peopleBusiness.SetAnyName("Melissa Data");
people_business.set_max_records("10")
people_business.set_match_level("10")
people_business.set_address_line_1("22382 Avenida Empresa")
people_business.set_locality("RSM")
people_business.set_administrative_area("CA")
people_business.set_postal("92688")
people_business.set_any_name("Melissa Data")
POST#
To send a POST request, there is one way you can configure the parameters to make a request.
Method 1: Using the Set Post Body Method to pass a PeopleBusinessSearchPostRequest object as the pre-constructed post body containing all parameters and records to process
Method 1: Set Post Body#
This function allows you to pass a pre-constructed post body with all parameters and records for POST requests.
Format
peopleBusiness.SetPostBody(new PeopleBusinessSearchRecordRequest
{
CustomerID = MELISSA_LICENSE_KEY,
MaxRecords = MAX_RECORDS,
MatchLevel = MATCH_LEVEL,
AddressLine1 = ADDRESS_LINE_1,
Locality = LOCALITY,
AdministrativeArea = ADMINISTRATIVE_AREA,
PostalCode = POSTAL_CODE,
AnyName = ANY_NAME
});
people_business.set_post_body(PeopleBusinessSearchPostRequest(
records=[
PeopleBusinessSearchRecordRequest(
customer_id = MELISSA_LICENSE_KEY,
max_records = MAX_RECORDS,
match_level = MATCH_LEVEL,
address_line_1 = ADDRESS_LINE_1,
locality = LOCALITY,
administrative_area = ADMINISTRATIVE_AREA,
postal_code = POSTAL_CODE,
any_name = ANY_NAME
)
]
))
Example
peopleBusiness.SetPostBody(new PeopleBusinessSearchRecordRequest
{
CustomerID = MELISSA_LICENSE_KEY,
MaxRecords = "10",
MatchLevel = "10",
AddressLine1 = "22382 Avenida Empresa",
Locality = "RSM",
AdministrativeArea = "CA",
PostalCode = "92688",
AnyName = "Melissa Data"
});
people_business.set_post_body(PeopleBusinessSearchPostRequest(
records=[
PeopleBusinessSearchRecordRequest(
customer_id = MELISSA_LICENSE_KEY,
max_records = "10",
match_level = "10",
address_line_1 = "22382 Avenida Empresa",
locality = "RSM",
administrative_area = "CA",
postal_code = "92688",
any_name = "Melissa Data"
)
]
))
Response#
When submitting a request, you have the option to either get the response as a string or encapsulate the response into the respective Cloud API response object.
As a String#
Submit a GET or POST request and get the response as a string.
string response = peopleBusiness.Get<string>();
response = people_business.get(str)
string response = peopleBusiness.Post<string>();
response = people_business.post(str)
As a Response Object#
Submit a GET or POST request and encapsulate the response into the Cloud API response object.
PeopleBusinessSearchResponse responseObject = peopleBusiness.Get<PeopleBusinessSearchResponse>();
response_object = people_business.get(PeopleBusinessSearchResponse)
PeopleBusinessSearchResponse responseObject = peopleBusiness.Post<PeopleBusinessSearchResponse>();
response_object = people_business.post(PeopleBusinessSearchResponse)
Accessing Values#
When encapsulating the response into the Cloud API’s respective response object, there are three ways to access values. The response object structure matches the respective Cloud API’s response format.
Click here to learn more about the People Business Search response format.
The record responses are typically stored in a list. In the examples below, record represents an individual record at an arbitrary position within this list.
1. Using the Get Value Method:
Pass the field name as a string to the Get Value Method, and it will return the corresponding field value.
record.GetValue("RecordID");
record.GetValue("Results");
record.get_value("RecordID")
record.get_value("Results")
2. Accessing Properties directly
Values can be accessed directly using the response object’s field names.
record.RecordID;
record.Results;
record.record_id
record.results
3. Use Specialized Methods
Use get methods corresponding to field name to get the field value.
record.GetRecordID();
record.GetResults();
record.get_record_id()
record.get_results()
Methods#
The methods listed below pertain to the People Business Search Cloud API object.
For methods related to the respective Cloud API’s response object click here.
Constructors#
These methods initialize and configure instances of the Cloud API object. Use these methods to create a new object, optionally providing initial values such as a license string to customize the instance during its creation.
Method |
Description |
---|---|
|
Constructor to initialize the People Business Search object. |
|
Constructor to initialize the People Business Search object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the People Business Search object. |
|
Constructor to initialize the People Business Search object with a license string. |
Set Methods#
These methods configure or modify parameters at the record level for the Cloud API object. Use these methods to make adjustments to the parameters during the execution of the Cloud API, ensuring flexibility in customizing API requests.
Method |
Description |
---|---|
|
Set the base URL. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the address line 1. |
|
Set the administrative area. |
|
Set the country. |
|
Set the locality. |
|
Set the phone number. |
|
Set the postal code. |
|
Set the post-direction. |
|
Set the pre-direction. |
|
Set the premises number. |
|
Set the subpremises number. |
|
Set the thoroughfare name. |
|
Set the thoroughfare trailing type. |
|
Set the name. |
|
Set the company. |
|
Set the first name. |
|
Set the full name. |
|
Set the last name. |
|
Set the subuser. |
|
Set the transmission reference. |
|
Set the match level. |
|
Set the max records. |
|
Set the input parameter to a specified value. |
|
Set the post body for post requests. |
Method |
Description |
---|---|
|
Set the base URL. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the address line 1. |
|
Set the administrative area. |
|
Set the country. |
|
Set the locality. |
|
Set the phone number. |
|
Set the postal code. |
|
Set the post-direction. |
|
Set the pre-direction. |
|
Set the premises number. |
|
Set the subpremises number. |
|
Set the thoroughfare name. |
|
Set the thoroughfare trailing type. |
|
Set the name. |
|
Set the company. |
|
Set the first name. |
|
Set the full name. |
|
Set the last name. |
|
Set the subuser. |
|
Set the transmission reference. |
|
Set the match level. |
|
Set the max records. |
|
Set the input parameter to a specified value. |
|
Set the post body for post requests. |
Get Methods#
These methods retrieve parameter values from the Cloud API object. Use these methods to access the parameters configured for the Cloud API at the record level, providing insight into the current state of the object’s settings.
Method |
Description |
---|---|
|
Get the base URL. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the address line 1. |
|
Get the administrative area. |
|
Get the country. |
|
Get the locality. |
|
Get the phone number. |
|
Get the postal code. |
|
Get the post-direction. |
|
Get the pre-direction. |
|
Get the premises number. |
|
Get the subpremises number. |
|
Get the thoroughfare name. |
|
Get the thoroughfare trailing type. |
|
Get the name. |
|
Get the company. |
|
Get the first name. |
|
Get the full name. |
|
Get the last name. |
|
Get the subuser. |
|
Get the transmission reference. |
|
Get the match level. |
|
Get the max records. |
|
Get the value of an input parameter. |
|
Get the post body for post requests. |
Method |
Description |
---|---|
|
Get the base URL. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the address line 1. |
|
Get the administrative area. |
|
Get the country. |
|
Get the locality. |
|
Get the phone number. |
|
Get the postal code. |
|
Get the post-direction. |
|
Get the pre-direction. |
|
Get the premises number. |
|
Get the subpremises number. |
|
Get the thoroughfare name. |
|
Get the thoroughfare trailing type. |
|
Get the name. |
|
Get the company. |
|
Get the first name. |
|
Get the full name. |
|
Get the last name. |
|
Get the subuser. |
|
Get the transmission reference. |
|
Get the match level. |
|
Get the max records. |
|
Get the value of an input parameter. |
|
Get the post body for post requests. |
Class Methods#
These methods perform service-level operations, handling the core processing and interactions for the Cloud API object. Use these methods to execute primary functionalities such as assembling records, clearing records, and making API requests.
Method |
Description |
---|---|
|
Add record to internal list for post body assembly. |
|
Clear the internal list of records. |
|
Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes the asynchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes a synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes an asynchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes a synchronous getversion request and returns the parsed Cloud API version. |
|
Makes an asynchronous getversion request and returns the parsed Cloud API version. |
Method |
Description |
---|---|
|
Add record to internal list for post body assembly. |
|
Clear the internal list of records. |
|
Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes the asynchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes a synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes an asynchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes a synchronous getversion request and returns the parsed Cloud API version. |
|
Makes an asynchronous getversion request and returns the parsed Cloud API version. |