Personator Search#
Introduction#
- Personator Search can:
An individual’s Current Address
An individual’s Previous Address
An individual’s Phone Numbers
An individual’s Email Addresses
Individuals living at an address
Individual/s tied to a phone number
Date of Birth and/or Date of Death
Name matches for a given area
Appended missing address line
Fuzzy Names/Nickname handling
Click here to learn more about the Personator 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, Personator Search will not function.
Initialization#
There are two different constructors that you can utilize when initializing Personator Search.
PersonatorSearch(string license)
Initialize the Cloud API object with a license key
PersonatorSearch personatorSearch = new PersonatorSearch(MELISSA_LICENSE_KEY);
personator_search = PersonatorSearch(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.
PersonatorSearch personatorSearch = new PersonatorSearch()
personator_search = PersonatorSearch()
Configuration#
Personator Search supports GET requests.
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
personatorSearch.SetValue("FullName", FULL_NAME);
personatorSearch.SetValue("AddressLine1", ADDRESS_LINE_1);
personatorSearch.SetValue("City", CITY);
personatorSearch.SetValue("State", STATE);
personatorSearch.SetValue("Postal", POSTAL_CODE);
personatorSearch.SetValue("Cols", COLS);
personator_search.set_value("full_name", FULL_NAME)
personator_search.set_value("address_line_1", ADDRESS_LINE_1)
personator_search.set_value("city", CITY)
personator_search.set_value("state", STATE)
personator_search.set_value("postal", POSTAL_CODE)
personator_search.set_value("cols", COLS)
Example
personatorSearch.SetValue("FullName", "Raymond Melissa");
personatorSearch.SetValue("AddressLine1", "22382 Avenida Empresa");
personatorSearch.SetValue("City", "Rancho Santa Margarita");
personatorSearch.SetValue("State", "CA");
personatorSearch.SetValue("Postal", "92688");
personatorSearch.SetValue("Cols", "GrpAll");
personator_search.set_value("full_name", "Raymond Melissa")
personator_search.set_value("address_line_1", "22382 Avenida Empresa")
personator_search.set_value("city", "Rancho Santa Margarita")
personator_search.set_value("state", "CA")
personator_search.set_value("postal", "92688")
personator_search.set_value("cols", "GrpAll")
Method 2: Using Direct Property Access#
This allows you to set values directly using the Cloud API’s parameter names.
Format
personatorSearch.FullName = FULL_NAME;
personatorSearch.AddressLine1 = ADDRESS_LINE_1;
personatorSearch.City = CITY;
personatorSearch.State = STATE;
personatorSearch.Postal = POSTAL_CODE;
personatorSearch.Cols = COLS;
personator_search.full_name = FULL_NAME
personator_search.address_line_1 = ADDRESS_LINE_1
personator_search.city = CITY
personator_search.state = STATE
personator_search.postal = POSTAL_CODE
personator_search.cols = COLS
Example
personatorSearch.FullName = "Raymond Melissa";
personatorSearch.AddressLine1 = "22382 Avenida Empresa";
personatorSearch.City = "Rancho Santa Margarita";
personatorSearch.State = "CA";
personatorSearch.Postal = "92688";
personatorSearch.Cols = "GrpAll";
personator_search.full_name = "Raymond Melissa"
personator_search.address_line_1 = "22382 Avenida Empresa"
personator_search.city = "Rancho Santa Margarita"
personator_search.state = "CA"
personator_search.postal = "92688"
personator_search.cols = "GrpAll"
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
personatorSearch.SetFullName(FULL_NAME);
personatorSearch.SetAddressLine1(ADDRESS_LINE_1);
personatorSearch.SetCity(CITY);
personatorSearch.SetState(STATE);
personatorSearch.SetPostal(POSTAL_CODE);
personatorSearch.SetCols(COLS);
personator_search.set_full_name(FULL_NAME)
personator_search.set_address_ine1(ADDRESS_LINE_1)
personator_search.set_city(CITY)
personator_search.set_state(STATE)
personator_search.set_postal(POSTAL_CODE)
personator_search.set_cols(COLS)
Example
personatorSearch.SetFullName("Raymond Melissa");
personatorSearch.SetAddressLine1("22382 Avenida Empresa");
personatorSearch.SetCity("Rancho Santa Margarita");
personatorSearch.SetState("CA");
personatorSearch.SetPostal("92688");
personatorSearch.SetCols("GrpAll");
personator_search.set_full_name("Raymond Melissa")
personator_search.set_address_ine1("22382 Avenida Empresa")
personator_search.set_city("Rancho Santa Margarita")
personator_search.set_state("CA")
personator_search.set_postal("92688")
personator_search.set_cols("GrpAll")
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 = personator.Get<string>();
response = personator.get(str)
As a Response Object#
Submit a GET request and encapsulate the response into the Cloud API response object.
PersonatorSearchResponse responseObject = personator.Get<PersonatorSearchResponse>();
response = personator.get(PersonatorSearchResponse)
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 Personator 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 Personator 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 Personator Search object. |
|
Constructor to initialize the Personator Search object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the Personator Search object. |
|
Constructor to initialize the Personator 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 transmission reference. |
|
Set the option. |
|
Set the columns. |
|
Set the free form. |
|
Set the full name. |
|
Set the first name. |
|
Set the last name. |
|
Set the address line 1. |
|
Set the action. |
|
Set the city. |
|
Set the state. |
|
Set the postal code. |
|
Set the phone number. |
|
Set the email. |
|
Set the MAK. |
|
Set the birth day. |
|
Set the birth month. |
|
Set the birth year. |
|
Set the input parameter to a specified value. |
Method |
Description |
---|---|
|
Set the base URL. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the transmission reference. |
|
Set the option. |
|
Set the columns. |
|
Set the free form. |
|
Set the full name. |
|
Set the first name. |
|
Set the last name. |
|
Set the address line 1. |
|
Set the action. |
|
Set the city. |
|
Set the state. |
|
Set the postal code. |
|
Set the phone number. |
|
Set the email. |
|
Set the MAK. |
|
Set the birth day. |
|
Set the birth month. |
|
Set the birth year. |
|
Set the input parameter to a specified value. |
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 transmission reference. |
|
Get the option. |
|
Get the columns. |
|
Get the free form. |
|
Get the full name. |
|
Get the first name. |
|
Get the last name. |
|
Get the address line 1. |
|
Get the action. |
|
Get the city. |
|
Get the state. |
|
Get the postal code. |
|
Get the phone number. |
|
Get the email. |
|
Get the MAK. |
|
Get the birth day. |
|
Get the birth month. |
|
Get the birth year. |
|
Get the value of an input parameter. |
Method |
Description |
---|---|
|
Get the base URL. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the transmission reference. |
|
Get the option. |
|
Get the columns. |
|
Get the free form. |
|
Get the full name. |
|
Get the first name. |
|
Get the last name. |
|
Get the address line 1. |
|
Get the action. |
|
Get the city. |
|
Get the state. |
|
Get the postal code. |
|
Get the phone number. |
|
Get the email. |
|
Get the MAK. |
|
Get the birth day. |
|
Get the birth month. |
|
Get the birth year. |
|
Get the value of an input parameter. |
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 |
---|---|
|
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 synchronous getversion request and returns parsed Cloud API version. |
|
Makes asynchronous getversion request and returns parsed Cloud API version. |
Method |
Description |
---|---|
|
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 synchronous getversion request and returns parsed Cloud API version. |
|
Makes asynchronous getversion request and returns parsed Cloud API version. |