Personator Identity#
Introduction#
Personator™ Identity cloud service is a single web service that checks and verifies your client/contact data globally. An individual’s data can easily be verified against trusted reference data.
- These data verification points include:
Name
Address
Phone
Email
Date of Birth
National ID
Click here to learn more about the Personator Identity 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 Identity will not function.
Initialization#
There are two different constructors that you can utilize when initializing Personator Identity.
PersonatorIdentity(string license)
Initialize the Cloud API object with a license key
PersonatorIdentity personatorIdentity = new PersonatorIdentity(MELISSA_LICENSE_KEY);
personator_identity = PersonatorIdentity(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.
PersonatorIdentity personatorIdentity = new PersonatorIdentity()
personator_identity = PersonatorIdentity()
Configuration#
Personator Identity 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 PersonatorIdentityPostRequest 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
personatorIdentity.SetValue("Action", ACTION);
personatorIdentity.SetValue("FullName", FULL_NAME);
personatorIdentity.SetValue("AddressLine1", ADDRESS_LINE_1);
personatorIdentity.SetValue("Locality", LOCALITY);
personatorIdentity.SetValue("AdministrativeArea", ADMINISTRATIVE_AREA);
personatorIdentity.SetValue("Postal", POSTAL_CODE);
personatorIdentity.SetValue("Country", COUNTRY);
personator_identity.set_value("action", ACTION)
personator_identity.set_value("full_name", FULL_NAME)
personator_identity.set_value("address_line1", ADDRESS_LINE_1)
personator_identity.set_value("locality", LOCALITY)
personator_identity.set_value("administrative_area", ADMINISTRATIVE_AREA)
personator_identity.set_value("postal", POSTAL_CODE)
personator_identity.set_value("country", COUNTRY)
Example
personatorIdentity.SetValue("Action", "check");
personatorIdentity.SetValue("FullName", "Raymond Melissa");
personatorIdentity.SetValue("AddressLine1", "22382 Avenida Empresa");
personatorIdentity.SetValue("Locality", "Rancho Santa Margarita");
personatorIdentity.SetValue("AdministrativeArea", "CA");
personatorIdentity.SetValue("Postal", "92688");
personatorIdentity.SetValue("Country", "United States");
personator_identity.set_value("action", "check")
personator_identity.set_value("full_name", "Raymond Melissa")
personator_identity.set_value("address_line1", "22382 Avenida Empresa")
personator_identity.set_value("locality", "Rancho Santa Margarita")
personator_identity.set_value("administrative_area", "CA")
personator_identity.set_value("postal", "92688")
personator_identity.set_value("country", "United States")
Method 2: Using Direct Property Access#
This allows you to set values directly using the Cloud API’s parameter names.
Format
personatorIdentity.Action = ACTION;
personatorIdentity.FullName = FULL_NAME;
personatorIdentity.AddressLine1 = ADDRESS_LINE_1;
personatorIdentity.Locality = LOCALITY;
personatorIdentity.AdministrativeArea = ADMINISTRATIVE_AREA;
personatorIdentity.Postal = POSTAL_CODE;
personatorIdentity.Country = COUNTRY;
personator_identity.action = ACTION
personator_identity.full_name = FULL_NAME
personator_identity.address_line1 = ADDRESS_LINE_1
personator_identity.locality = LOCALITY
personator_identity.administrative_area = ADMINISTRATIVE_AREA
personator_identity.postal = POSTAL_CODE
personator_identity.country = COUNTRY
Example
personatorIdentity.Action = "check";
personatorIdentity.FullName = "Raymond Melissa";
personatorIdentity.AddressLine1 = "22382 Avenida Empresa";
personatorIdentity.Locality = "Rancho Santa Margarita";
personatorIdentity.AdministrativeArea = "Ca";
personatorIdentity.Postal = "92688";
personatorIdentity.Country = "United States";
personator_identity.action = "check"
personator_identity.full_name = "Raymond Melissa"
personator_identity.address_line1 = "22382 Avenida Empresa"
personator_identity.locality = "Rancho Santa Margarita"
personator_identity.administrative_area = "Ca"
personator_identity.postal = "92688"
personator_identity.country = "United States"
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
personatorIdentity.SetAction(ACTION);
personatorIdentity.SetFullName(FULL_NAME);
personatorIdentity.SetAddressLine1(ADDRESS_LINE_1);
personatorIdentity.SetLocality(LOCALITY);
personatorIdentity.SetAdministrativeArea(ADMINISTRATIVE_AREA);
personatorIdentity.SetPostal(POSTAL_CODE);
personatorIdentity.SetCountry(COUNTRY);
personator_identity.set_action(ACTION)
personator_identity.set_full_name(FULL_NAME)
personator_identity.set_address_line1(ADDRESS_LINE_1)
personator_identity.set_locality(LOCALITY)
personator_identity.set_administrative_area(ADMINISTRATIVE_AREA)
personator_identity.set_postal(POSTAL_CODE)
personator_identity.set_country(COUNTRY)
Example
personatorIdentity.SetAction("check");
personatorIdentity.SetFullName("Raymond Melissa");
personatorIdentity.SetAddressLine1("22382 Avenida Empresa");
personatorIdentity.SetLocality("Rancho Santa Margarita");
personatorIdentity.SetAdministrativeArea("CA");
personatorIdentity.SetPostal("92688");
personatorIdentity.SetCountry("United States");
personator_identity.set_action("check")
personator_identity.set_full_name("Raymond Melissa")
personator_identity.set_address_line1("22382 Avenida Empresa")
personator_identity.set_locality("Rancho Santa Margarita")
personator_identity.set_administrative_area("CA")
personator_identity.set_postal("92688")
personator_identity.set_country("United States")
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 PersonatorIdentityPostRequest 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
personatorIdentity.SetPostBody(new PersonatorIdentityRecordRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Actions = ACTION,
FullName = FULL_NAME,
AddressLine1 = ADDRESS_LINE_1,
Locality = LOCALITY,
AdministrativeArea = ADMINISTRATIVE_AREA,
PostalCode = POSTAL_CODE,
Country = COUNTRY
});
personator_identity.set_post_body(PersonatorIdentityRecordRequest(
customer_id = MELISSA_LICENSE_KEY,
actions = ACTION,
full_name = FULL_NAME,
address_line1 = ADDRESS_LINE_1,
locality = LOCALITY,
administrative_area = ADMINISTRATIVE_AREA,
postal_code = POSTAL_CODE,
country = COUNTRY
))
Example
personatorIdentity.SetPostBody(new PersonatorIdentityRecordRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Actions = "check",
FullName = "Raymond Melissa",
AddressLine1 = "22382 Avenida Empresa",
Locality = "Rancho Santa Margarita",
AdministrativeArea = "CA",
PostalCode = "92688",
Country = "United States"
});
personator_identity.set_post_body(PersonatorIdentityRecordRequest(
customer_id = MELISSA_LICENSE_KEY,
actions = "check",
full_name = "Raymond Melissa",
address_line1 = "22382 Avenida Empresa",
locality = "Rancho Santa Margarita",
administrative_area = "CA",
postal_code = "92688",
country = "United States"
))
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)
string response = personator.Post<string>();
response = personator.post(str)
As a Response Object#
Submit a GET or POST request and encapsulate the response into the Cloud API response object.
PersonatorIdentityResponse responseObject = personator.Get<PersonatorIdentityResponse>();
response_object = personator.get(PersonatorIdentityResponse)
PersonatorIdentityResponse responseObject = personator.Post<PersonatorIdentityResponse>();
response_object = personator.post(PersonatorIdentityResponse)
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 Global Address Verification 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 Identity 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 Identity object. |
|
Constructor to initialize the Personator Identity object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the Personator Identity object. |
|
Constructor to initialize the Personator Identity 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 national ID. |
|
Set the first name. |
|
Set the last name. |
|
Set the full name. |
|
Set the company. |
|
Set the phone number. |
|
Set the email. |
|
Set the date of birth. |
|
Set the account number. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the address line 3. |
|
Set the address line 4. |
|
Set the address line 5. |
|
Set the address line 6. |
|
Set the address line 7. |
|
Set the address line 8. |
|
Set the locality. |
|
Set the administrative area. |
|
Set the postal code. |
|
Set the country. |
|
Set the country of origin. |
|
Set the transmission reference. |
|
Set the address option. |
|
Set the name option. |
|
Set the email option. |
|
Set the phone option. |
|
Set the option. |
|
Set the privacy. |
|
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 action. |
|
Set the national ID. |
|
Set the first name. |
|
Set the last name. |
|
Set the full name. |
|
Set the company. |
|
Set the phone number. |
|
Set the email. |
|
Set the date of birth. |
|
Set the account number. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the address line 3. |
|
Set the address line 4. |
|
Set the address line 5. |
|
Set the address line 6. |
|
Set the address line 7. |
|
Set the address line 8. |
|
Set the locality. |
|
Set the administrative area. |
|
Set the postal code. |
|
Set the country. |
|
Set the country of origin. |
|
Set the transmission reference. |
|
Set the address option. |
|
Set the name option. |
|
Set the email option. |
|
Set the phone option. |
|
Set the option. |
|
Set the privacy. |
|
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 action. |
|
Get the national ID. |
|
Get the first name. |
|
Get the last name. |
|
Get the full name. |
|
Get the company. |
|
Get the phone number. |
|
Get the email. |
|
Get the date of birth. |
|
Get the account number. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the address line 3. |
|
Get the address line 4. |
|
Get the address line 5. |
|
Get the address line 6. |
|
Get the address line 7. |
|
Get the address line 8. |
|
Get the locality. |
|
Get the administrative area. |
|
Get the postal code. |
|
Get the country. |
|
Get the country of origin. |
|
Get the transmission reference. |
|
Get the address option. |
|
Get the name option. |
|
Get the email option. |
|
Get the phone option. |
|
Get the option. |
|
Get the privacy. |
|
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 action. |
|
Get the national ID. |
|
Get the first name. |
|
Get the last name. |
|
Get the full name. |
|
Get the company. |
|
Get the phone number. |
|
Get the email. |
|
Get the date of birth. |
|
Get the account number. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the address line 3. |
|
Get the address line 4. |
|
Get the address line 5. |
|
Get the address line 6. |
|
Get the address line 7. |
|
Get the address line 8. |
|
Get the locality. |
|
Get the administrative area. |
|
Get the postal code. |
|
Get the country. |
|
Get the country of origin. |
|
Get the transmission reference. |
|
Get the address option. |
|
Get the name option. |
|
Get the email option. |
|
Get the phone option. |
|
Get the option. |
|
Get the privacy. |
|
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 |
---|---|
|
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 |
---|---|
|
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. |