Personator Consumer#
Introduction#
- Personator Consumer can:
Verify, Correct, & Standardize names, addresses, phones and emails
Retrieve move information
Append demographics
Append Geographic and Census data
Click here to learn more about the Personator Consumer 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 Consumer will not function.
Initialization#
There are two different constructors that you can utilize when initializing Personator Consumer.
PersonatorConsumer(string license)
Initialize the Cloud API object with a license key
PersonatorConsumer personator = new PersonatorConsumer(MELISSA_LICENSE_KEY);
personator = PersonatorConsumer(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.
PersonatorConsumer personatorConsumer = new PersonatorConsumer()
personator_consumer = PersonatorConsumer()
Configuration#
Personator Consumer 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 PersonatorConsumerPostRequest object as the pre-constructed post body containing all parameters and records to process
(POST) Using Set Methods to configure base parameters and the Add Records Method to pass 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
personatorConsumer.SetValue("FullName", FULL_NAME);
personatorConsumer.SetValue("AddressLine1", ADDRESS_LINE_1);
personatorConsumer.SetValue("City", CITY);
personatorConsumer.SetValue("State", STATE);
personatorConsumer.SetValue("Postal", POSTAL_CODE);
personatorConsumer.SetValue("Country", COUNTRY);
personatorConsumer.SetValue("Email", EMAIL);
personatorConsumer.SetValue("Phone", PHONE);
personator_consumer.set_value("full_name", FULL_NAME)
personator_consumer.set_value("address_line1", ADDRESS_LINE_1)
personator_consumer.set_value("city", CITY)
personator_consumer.set_value("state", STATE)
personator_consumer.set_value("postal", POSTAL_CODE)
personator_consumer.set_value("country", COUNTRY)
personator_consumer.set_value("email", EMAIL)
personator_consumer.set_value("phone", PHONE)
Example
personatorConsumer.SetValue("FullName", "Raymond Melissa");
personatorConsumer.SetValue("AddressLine1", "22382 Avenida Empresa");
personatorConsumer.SetValue("City", "Rancho Santa Margarita");
personatorConsumer.SetValue("State", "CA");
personatorConsumer.SetValue("Postal", "92688");
personatorConsumer.SetValue("Country", "United States");
personatorConsumer.SetValue("Email", "info@melissa.com");
personatorConsumer.SetValue("Phone", "800-635-4772");
personator_consumer.set_value("full_name", "Raymond Melissa")
personator_consumer.set_value("address_line1", "22382 Avenida Empresa")
personator_consumer.set_value("city", "Rancho Santa Margarita")
personator_consumer.set_value("state", "CA")
personator_consumer.set_value("postal", "92688")
personator_consumer.set_value("country", "United States")
personator_consumer.set_value("email", "info@melissa.com")
personator_consumer.set_value("phone", "800-635-4772")
Method 2: Using Direct Property Access#
This allows you to set values directly using the Cloud API’s parameter names.
Format
personatorConsumer.FullName = FULL_NAME;
personatorConsumer.AddressLine1 = ADDRESS_LINE_1;
personatorConsumer.City = CITY;
personatorConsumer.State = STATE;
personatorConsumer.Postal = POSTAL_CODE;
personatorConsumer.Country = COUNTRY;
personatorConsumer.Email = EMAIL;
personatorConsumer.Phone = PHONE;
personator_consumer.full_name = FULL_NAME
personator_consumer.address_line1 = ADDRESS_LINE_1
personator_consumer.city = CITY
personator_consumer.state = STATE
personator_consumer.postal = POSTAL_CODE
personator_consumer.country = COUNTRY
personator_consumer.email = EMAIL
personator_consumer.phone = PHONE
Example
personatorConsumer.FullName = "Raymond Melissa";
personatorConsumer.AddressLine1 = "22382 Avenida Empresa";
personatorConsumer.City = "Rancho Santa Margarita";
personatorConsumer.State = "CA";
personatorConsumer.Postal = "92688";
personatorConsumer.Country = "United States";
personatorConsumer.Email = "info@melissa.com";
personatorConsumer.Phone = "800-635-4772";
personator_consumer.full_name = "Raymond Melissa"
personator_consumer.address_line1 = "22382 Avenida Empresa"
personator_consumer.city = "Rancho Santa Margarita"
personator_consumer.state = "CA"
personator_consumer.postal = "92688"
personator_consumer.country = "United States"
personator_consumer.email = "info@melissa.com"
personator_consumer.phone = "800-635-4772"
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
personatorConsumer.SetFullName(FULL_NAME);
personatorConsumer.SetAddressLine1(ADDRESS_LINE_1);
personatorConsumer.SetCity(CITY);
personatorConsumer.SetState(STATE);
personatorConsumer.SetPostal(POSTAL_CODE);
personatorConsumer.SetCountry(COUNTRY);
personatorConsumer.SetEmail(EMAIL);
personatorConsumer.SetPhone(PHONE);
personator_consumer.set_full_name(FULL_NAME)
personator_consumer.set_address_line1(ADDRESS_LINE_1)
personator_consumer.set_city(CITY)
personator_consumer.set_state(STATE)
personator_consumer.set_postal(POSTAL_CODE)
personator_consumer.set_country(COUNTRY)
personator_consumer.set_email(EMAIL)
personator_consumer.set_phone(PHONE)
Example
personatorConsumer.SetFullName("Raymond Melissa");
personatorConsumer.SetAddressLine1("22382 Avenida Empresa");
personatorConsumer.SetCity("Rancho Santa Margarita");
personatorConsumer.SetState("CA");
personatorConsumer.SetPostal("92688");
personatorConsumer.SetCountry("United States");
personatorConsumer.SetEmail("info@melissa.com");
personatorConsumer.SetPhone("800-635-4772");
personator_consumer.set_full_name("Raymond Melissa")
personator_consumer.set_address_line1("22382 Avenida Empresa")
personator_consumer.set_city("Rancho Santa Margarita")
personator_consumer.set_state("CA")
personator_consumer.set_postal("92688")
personator_consumer.set_country("United States")
personator_consumer.set_email("info@melissa.com")
personator_consumer.set_phone("800-635-4772")
POST#
To send a POST request, there are two ways you can configure the parameters to make a request.
Method 1: Using the Set Post Body Method to pass a PersonatorConsumerPostRequest object as the pre-constructed post body containing all parameters and records to process
Method 2: Using Set Methods to configure base parameters and the Add Records Method to pass records to process
A maximum of 100 records can be sent per request.
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
personatorConsumer.SetPostBody(new PersonatorConsumerPostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Records = new List<PersonatorConsumerRecordRequest>
{
new PersonatorConsumerRecordRequest
{
RecordID = RECORD_ID
FullName = FULL_NAME,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE
},
new PersonatorConsumerRecordRequest
{
RecordID = RECORD_ID
FullName = FULL_NAME,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE
}
}
});
personator_consumer.set_post_body(PersonatorConsumerPostRequest(
customer_id = MELISSA_LICENSE_KEY,
records=[
PersonatorConsumerRecordRequest(
record_id = RECORD_ID,
full_name = FULL_NAME,
address_line1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE
),
PersonatorConsumerRecordRequest(
record_id = RECORD_ID,
full_name = FULL_NAME,
address_line1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE
)
]
))
Example
personatorConsumer.SetPostBody(new PersonatorConsumerPostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Records = new List<PersonatorConsumerRecordRequest>
{
new PersonatorConsumerRecordRequest
{
RecordID = "1"
FullName = "Raymond Melissa",
AddressLine1 = "22382 Avenida Empresa",
City = "Rancho Santa Margarita",
State = "CA",
PostalCode = "92688"
},
new PersonatorConsumerRecordRequest
{
RecordID = "2"
FullName = "John Melissa",
AddressLine1 = "22382 Avenida Empresa",
City = "Rancho Santa Margarita",
State = "CA",
PostalCode = "92688"
}
}
});
personator_consumer.set_post_body(PersonatorConsumerPostRequest(
customer_id = MELISSA_LICENSE_KEY,
records=[
PersonatorConsumerRecordRequest(
record_id = "1",
full_name = "Raymond Melissa",
address_line1 = "22382 Avenida Empresa",
city = "Rancho Santa Margarita",
state = "CA",
postal_code = "92688"
),
PersonatorConsumerRecordRequest(
record_id = "2",
full_name = "John Melissa",
address_line1 = "22382 Avenida Empresa",
city = "Rancho Santa Margarita",
state = "CA",
postal_code = "92688"
)
]
))
Method 2: Set Input Parameters and Add Records#
You will use set methods to configure the base parameters (license, options, transmission reference), and use the function below to add records for POST requests.
See Set Methods for a list of available parameters.
Format
personatorConsumer.SetLicense(MELISSA_LICENSE_KEY);
personatorConsumer.AddRecord(new PersonatorConsumerRecordRequest
{
RecordID = RECORD_ID,
FullName = FULL_NAME,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE
});
personatorConsumer.AddRecord(new PersonatorConsumerRecordRequest
{
RecordID = RECORD_ID,
FullName = FULL_NAME,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE
});
personator_consumer = PersonatorConsumer(MELISSA_LICENSE_KEY)
personator_consumer.add_record(PersonatorConsumerRecordRequest(
record_id = RECORD_ID,
full_name = FULL_NAME,
address_line1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE
))
personator_consumer.add_record(PersonatorConsumerRecordRequest(
record_id = RECORD_ID,
full_name = FULL_NAME,
address_line1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE
))
Example
personatorConsumer.SetLicense(MELISSA_LICENSE_KEY);
personatorConsumer.AddRecord(new PersonatorConsumerRecordRequest
{
RecordID = "1",
FullName = "Raymond Melissa",
AddressLine1 = "22382 Avenida Empresa",
City = "Rancho Santa Margarita",
State = "CA",
PostalCode = "92688"
});
personatorConsumer.AddRecord(new PersonatorConsumerRecordRequest
{
RecordID = "1",
FullName = "John Melissa",
AddressLine1 = "22382 Avenida Empresa",
City = "Rancho Santa Margarita",
State = "CA",
PostalCode = "92688"
});
personator_consumer = PersonatorConsumer(MELISSA_LICENSE_KEY)
personator_consumer.add_record(PersonatorConsumerRecordRequest(
record_id = "1",
full_name = "Raymond Melissa",
address_line1 = "22382 Avenida Empresa",
city = "Rancho Santa Margarita",
state = "CA",
postal_code = "92688"
))
personator_consumer.add_record(PersonatorConsumerRecordRequest(
record_id = "2",
full_name = "John Melissa",
address_line1 = "22382 Avenida Empresa",
city = "Rancho Santa Margarita",
state = "CA",
postal_code = "92688"
))
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 = personatorConsumer.Get<string>();
response = personator_consumer.get(str)
string response = personatorConsumer.Post<string>();
response = personator_consumer.post(str)
As a Response Object#
Submit a GET or POST request and encapsulate the response into the Cloud API response object.
PersonatorConsumerResponse responseObject = globalAddress.Get<PersonatorConsumerResponse>();
response = personator_consumer.get(PersonatorConsumerResponse)
PersonatorConsumerResponse responseObject = globalAddress.Post<PersonatorConsumerResponse>();
response = personator_consumer.post(PersonatorConsumerResponse)
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 Consumer 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 Consumer 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 Consumer object. |
|
Constructor to initialize the Personator Consumer object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the Personator Consumer object. |
|
Constructor to initialize the Personator Consumer 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 action. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the birth day. |
|
Set the birth month. |
|
Set the birth year. |
|
Set the city. |
|
Set the company. |
|
Set the country. |
|
Set the email. |
|
Set the first name. |
|
Set the free form. |
|
Set the full name. |
|
Set the IP address. |
|
Set the last line. |
|
Set the last name. |
|
Set the MAK. |
|
Set the MIK. |
|
Set the phone number. |
|
Set the postal code. |
|
Set the SSN. |
|
Set the state. |
|
Set the transmission reference. |
|
Set the option. |
|
Set the columns. |
|
Set the input parameter to a specified value. |
|
Set post body for post requests. |
Method |
Description |
---|---|
|
Set the base URL. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the action. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the birth day. |
|
Set the birth month. |
|
Set the birth year. |
|
Set the city. |
|
Set the company. |
|
Set the country. |
|
Set the email. |
|
Set the first name. |
|
Set the free form. |
|
Set the full name. |
|
Set the IP address. |
|
Set the last line. |
|
Set the last name. |
|
Set the MAK. |
|
Set the MIK. |
|
Set the phone number. |
|
Set the postal code. |
|
Set the SSN. |
|
Set the state. |
|
Set the transmission reference. |
|
Set the option. |
|
Set the columns. |
|
Set the input parameter to a specified value. |
|
Set 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 action. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the birth day. |
|
Get the birth month. |
|
Get the birth year. |
|
Get the city. |
|
Get the company. |
|
Get the country. |
|
Get the email. |
|
Get the first name. |
|
Get the free form. |
|
Get the full name. |
|
Get the IP address. |
|
Get the last line. |
|
Get the last name. |
|
Get the MAK. |
|
Get the MIK. |
|
Get the phone number. |
|
Get the postal code. |
|
Get the SSN. |
|
Get the state. |
|
Get the transmission reference. |
|
Get the option. |
|
Get the columns. |
|
Get the value of an input parameter. |
|
Get post body for post requests. |
Method |
Description |
---|---|
|
Get the base URL. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the action. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the birth day. |
|
Get the birth month. |
|
Get the birth year. |
|
Get the city. |
|
Get the company. |
|
Get the country. |
|
Get the email. |
|
Get the first name. |
|
Get the free form. |
|
Get the full name. |
|
Get the IP address. |
|
Get the last line. |
|
Get the last name. |
|
Get the MAK. |
|
Get the MIK. |
|
Get the phone number. |
|
Get the postal code. |
|
Get the SSN. |
|
Get the state. |
|
Get the transmission reference. |
|
Get the option. |
|
Get the columns. |
|
Get the value of an input parameter. |
|
Get post body for post requests. |
Get 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 synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes asynchronous POST request to the CloudAPI using the post body 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 |
---|---|
|
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 synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object). |
|
Makes asynchronous POST request to the CloudAPI using the post body 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. |