Global Phone#
Introduction#
- Global Phone can:
Verify and append country dialing codes, international exit codes, national prefixes, and more.
Append geographic information on the telephone line such as latitude, longitude, administrative area, and language.
Parse the phone number into its various components.
Return Caller ID Information for 200 countries.
Identify the numbers phone type including mobile, landline, VoIP, and more. (North America Only)
Perform a real-time check on a number to know whether it is live or not. (North America Only)
Click here to learn more about the Global Phone 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 Phone will not function.
Initialization#
There are two different constructors that you can utilize when initializing Global Phone.
Initialize the Cloud API object with a license key
GlobalPhone globalPhone = new GlobalPhone(MELISSA_LICENSE_KEY);
global_phone = GlobalPhone(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.
GlobalPhone globalPhone = new GlobalPhone()
global_phone = GlobalPhone()
Configuration#
Global Phone 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 GlobalPhonePostRequest 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
globalPhone.SetValue("Phone", PHONE);
global_phone.set_value("phone", PHONE)
Example
globalPhone.SetValue("Phone", "800-635-4772");
global_phone.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
globalPhone.Phone = PHONE;
global_phone.phone = PHONE
Example
globalPhone.Phone = "800-635-4772";
global_phone.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
globalPhone.SetPhone(PHONE);
global_phone.set_phone(PHONE)
Example
globalPhone.SetPhone("800-635-4772");
global_phone.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 GlobalPhonePostRequest 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
globalPhone.SetPostBody(new GlobalPhonePostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Records = new List<GlobalPhoneRecordRequest>
{
new GlobalPhoneRecordRequest
{
RecordID = RECORD_ID,
PhoneNumber = PHONE
},
new GlobalPhoneRecordRequest
{
RecordID = RECORD_ID,
PhoneNumber = PHONE
}
}
});
global_phone.set_post_body(GlobalPhonePostRequest(
customer_id = MELISSA_LICENSE_KEY,
records= [
GlobalPhoneRecordRequest(
record_id = RECORD_ID,
phone_number = PHONE
),
GlobalPhoneRecordRequest(
record_id = RECORD_ID,
phone_number = PHONE
)
]
))
Example
globalPhone.SetPostBody(new GlobalPhonePostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
Records = new List<GlobalPhoneRecordRequest>
{
new GlobalPhoneRecordRequest
{
RecordID = "1",
PhoneNumber = "800-635-4772"
},
new GlobalPhoneRecordRequest
{
RecordID = "2",
PhoneNumber = "+49 (0) 221 97 58 92 40"
}
}
});
global_phone.set_post_body(GlobalPhonePostRequest(
customer_id = MELISSA_LICENSE_KEY,
records= [
GlobalPhoneRecordRequest(
record_id = 1,
phone_number = "800-635-4772"
),
GlobalPhoneRecordRequest(
record_id = 2,
phone_number = "+49 (0) 221 97 58 92 40"
)
]
))
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
globalPhone.SetLicense(MELISSA_LICENSE_KEY);
globalPhone.AddRecord(new GlobalPhoneRecordRequest
{
RecordID = RECORD_ID,
PhoneNumber = PHONE
});
globalPhone.AddRecord(new GlobalPhoneRecordRequest
{
RecordID = RECORD_ID,
PhoneNumber = PHONE
});
global_phone = GlobalPhone(MELISSA_LICENSE_KEY)
global_phone.add_record(GlobalPhoneRecordRequest(
record_id = RECORD_ID,
phone_number= PHONE
))
global_phone.add_record(GlobalPhoneRecordRequest(
record_id = RECORD_ID,
phone_number = PHONE
))
Example
globalPhone.SetLicense(MELISSA_LICENSE_KEY);
globalPhone.AddRecord(new GlobalPhoneRecordRequest
{
RecordID = "1",
PhoneNumber = "800-635-4772"
});
globalPhone.AddRecord(new GlobalPhoneRecordRequest
{
RecordID = "2",
PhoneNumber = "7+49 (0) 221 97 58 92 40"
});
global_phone = GlobalPhone(MELISSA_LICENSE_KEY)
global_phone.add_record(GlobalPhoneRecordRequest(
record_id = "1",
phone_number= "800-635-4772"
))
global_phone.add_record(GlobalPhoneRecordRequest(
record_id = "2",
phone_number= "7+49 (0) 221 97 58 92 40"
))
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 = globalPhone.Get<string>();
response = global_phone.get(str)
string response = globalPhone.Post<string>();
response = global_phone.post(str)
As a Response Object#
Submit a GET or POST request and encapsulate the response into the Cloud API response object.
GlobalPhoneResponse responseObject = globalPhone.Get<GlobalPhoneResponse>();
response_object = global_phone.get(GlobalPhoneResponse)
GlobalPhoneResponse responseObject = globalPhone.Post<GlobalPhoneResponse>();
response_object = global_phone.post(GlobalPhoneResponse)
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 Phone 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 Phone 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.
C# Method |
Description |
---|---|
|
Constructor to initialize the Global Phone object. |
|
Constructor to initialize the Global Phone object with a license string. |
Python Method |
Description |
---|---|
|
Constructor to initialize the Global Phone object. |
|
Constructor to initialize the Global Phone 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 phone number. |
|
Set the country. |
|
Set the country origin. |
|
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 phone number. |
|
Set the country. |
|
Set the country origin. |
|
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 value of the parameter. |
|
Get the phone number. |
|
Get the country. |
|
Get the country origin. |
|
Get the transmission reference. |
|
Get the option. |
|
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 value of the parameter. |
|
Get the phone number. |
|
Get the country. |
|
Get the country origin. |
|
Get the transmission reference. |
|
Get the option. |
|
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 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. |