Global Name#
Introduction#
- Global Name can:
Recognize over 6,000,000 last names and 4,000,000 first names across different countries and languages.
Parse full names into first, middle and last names, as well as prefixes like “Dr.” and suffixes like “Jr.”
Correct misspelled first names
Standardized names with extended and UTF-8 characters will return responses with the proper UTF-8 / accented characters.
Flag vulgar and obviously fake names, such as “Bugs Bunny.”
Split dual names (ex. Mr and Mrs John and Mary Jones)
Assign gender based on known first names and prefixes.
Output preferred output Salutation name parts.
Standardize company names
Click here to learn more about the Global Name 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, Global Name will not function.
Initialization#
There are two different constructors that you can utilize when initializing Global Name
Initialize the Cloud API object with a license key
GlobalName globalName = new GlobalName(MELISSA_LICENSE_KEY);
global_name = GlobalName(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.
GlobalName globalName = new GlobalName()
global_name = GlobalName()
Configuration#
Global Name 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 GlobalNamePostRequest 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
globalName.SetValue("FullName", FULL_NAME);
global_name.set_value("full_name", FULL_NAME)
Example
globalName.SetValue("FullName", "Raymond Melissa");
global_name.set_value("full_name", "Raymond Melissa")
Method 2: Using Direct Property Access#
This allows you to set values directly using the Cloud API’s parameter names.
Format
globalName.FullName = FULL_NAME;
global_name.full_name = FULL_NAME
Example
globalName.FullName = "Raymond Melissa";
global_name.full_name = "Raymond Melissa"
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
globalName.SetFullName(FULL_NAME);
global_name.set_full_name(FULL_NAME)
Example
globalName.SetFullName("Raymond Melissa");
global_name.set_full_name("Raymond Melissa")
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 GlobalNamePostRequest 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
globalName.SetPostBody(new GlobalNamePostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Records = new List<GlobalNameRecordRequest>
{
new GlobalNameRecordRequest
{
RecordID = RECORD_ID,
FullName = FULL_NAME
},
new GlobalNameRecordRequest
{
RecordID = RECORD_ID,
FullName = FULL_NAME
}
}
});
global_name.set_post_body(GlobalNamePostRequest(
customer_id = MELISSA_LICENSE_KEY,
records=[
GlobalNameRecordRequest(
record_id = RECORD_ID,
full_name = FULL_NAME
),
GlobalNameRecordRequest(
record_id = RECORD_ID,
full_name = FULL_NAME
)
]
))
Example
globalName.SetPostBody(new GlobalNamePostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Records = new List<GlobalNameRecordRequest>
{
new GlobalNameRecordRequest
{
RecordID = "1",
FullName = "Raymond Melissa"
},
new GlobalNameRecordRequest
{
RecordID = "2",
FullName = "Daniel Kha Le"
}
}
});
global_name.set_post_body(GlobalNamePostRequest(
customer_id = MELISSA_LICENSE_KEY,
records=[
GlobalNameRecordRequest(
record_id = "1",
full_name = "Raymond Melissa"
),
GlobalNameRecordRequest(
record_id = "2",
full_name = "Daniel Kha Le"
)
]
))
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
global_name = GlobalName(MELISSA_LICENSE_KEY)
global_name.add_record(GlobalNameRecordRequest(
record_id = RECORD_ID,
full_name = FULL_NAME
))
global_name.add_record(GlobalNameRecordRequest(
record_id = RECORD_ID,
full_name = FULL_NAME
))
Example
globalName.SetLicense(MELISSA_LICENSE_KEY);
globalName.AddRecord(new GlobalNameRecordRequest
{
RecordID = "1",
FullName = "Raymond Melissa"
});
globalName.AddRecord(new GlobalNameRecordRequest
{
RecordID = "2",
FullName = "Daniel Kha Le"
});
global_name = GlobalName(MELISSA_LICENSE_KEY)
global_name.add_record(GlobalNameRecordRequest(
record_id = "1",
full_name = "Raymond Melissa"
))
global_name.add_record(GlobalNameRecordRequest(
record_id = "2",
full_name = "Daniel Kha Le"
))
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 = globalName.Get<string>();
response = global_name.get(str)
string response = globalName.Post<string>();
response = global_name.post(str)
As a Response Object#
Submit a GET or POST request and encapsulate the response into the Cloud API response object.
GlobalNameResponse responseObject = globalName.Get<GlobalNameResponse>();
response_object = global_name.get(GlobalNameResponse)
GlobalNameResponse responseObject = globalName.Post<GlobalNameResponse>();
response_object = global_name.post(GlobalNameResponse)
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 Name 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 Global Name 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 Global Name object. |
|
Constructor to initialize the Global Name object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the Global Name object. |
|
Constructor to initialize the Global Name 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 company. |
|
Set the full name. |
|
Set the country. |
|
Set the transmission reference. |
|
Set the option. |
|
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 company. |
|
Set the full name. |
|
Set the country. |
|
Set the transmission reference. |
|
Set the option. |
|
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 company. |
|
Get the full name. |
|
Get the country. |
|
Get the transmission reference. |
|
Get the option. |
|
Get the value of an input parameter. |
|
Get the post body. |
Method |
Description |
---|---|
|
Get the base URL. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the company. |
|
Get the full name. |
|
Get the country. |
|
Get the transmission reference. |
|
Get the option. |
|
Get the value of an input parameter. |
|
Get the post body. |
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. |