Global Express Entry#
Introduction#
- Global Express Entry can:
Complete free form partial address input with standardized and verified addresses.
Return geocoding coordinates along with address (in supported countries).
Filter output by state, distance from a lat/long point, Residence or Business, or ZIP Code (U.S. only).
Click here to learn more about the Global Express Entry 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 Express Entry will not function.
Initialization#
There are two different constructors that you can utilize when initializing Global Express Entry.
GlobalExpressEntry(string license)
Initialize the Cloud API object with a license key
GlobalExpressEntry globalExpressEntry = new GlobalExpressEntry(MELISSA_LICENSE_KEY);
global_express_entry = GlobalExpressEntry(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.
GlobalExpressEntry globalExpressEntry = new GlobalExpressEntry()
global_express_entry = GlobalExpressEntry()
Configuration#
Global Express Entry 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
globalExpressEntry.SetValue("AddressLine1", ADDRESS_LINE_1);
globalExpressEntry.SetValue("City", CITY);
globalExpressEntry.SetValue("State", STATE);
globalExpressEntry.SetValue("Postal", POSTAL_CODE);
global_express_entry.set_value("address_line_1", ADDRESS_LINE_1)
global_express_entry.set_value("city", LOCALITY)
global_express_entry.set_value("state", ADMINISTRATIVE_AREA)
global_express_entry.set_value("postal", POSTAL_CODE)
Example
globalExpressEntry.SetValue("AddressLine1", "22382 Avenida Empresa");
globalExpressEntry.SetValue("City", "RSM");
globalExpressEntry.SetValue("State", "CA");
globalExpressEntry.SetValue("Postal", "92688");
global_express_entry.set_value("address_line_1", "22382 Avenida Empresa")
global_express_entry.set_value("city", "RSM")
global_express_entry.set_value("state", "CA")
global_express_entry.set_value("postal", "92688")
Method 2: Using Direct Property Access#
This allows you to set values directly using the Cloud API’s parameter names.
Format
globalExpressEntry.AddressLine1 = ADDRESS_LINE_1;
globalExpressEntry.City = CITY;
globalExpressEntry.State = STATE;
globalExpressEntry.Postal = POSTAL_CODE;
global_express_entry.address_line_1 = ADDRESS_LINE_1
global_express_entry.city = CITY
global_express_entry.state = STATE
global_express_entry.postal = POSTAL_CODE
Example
globalExpressEntry.AddressLine1 = "22382 Avenida Empresa";
globalExpressEntry.City = "Rancho Santa Margarita";
globalExpressEntry.State = "CA";
globalExpressEntry.Postal = "92688";
global_express_entry.address_line_1 = "22382 Avenida Empresa"
global_express_entry.city = "Rancho Santa Margarita"
global_express_entry.state = "CA"
global_express_entry.postal = "92688"
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
globalExpressEntry.SetAddressLine1(ADDRESS_LINE_1);
globalExpressEntry.SetCity(CITY);
globalExpressEntry.SetState(STATE);
globalExpressEntry.SetPostal(POSTAL_CODE);
global_express_entry.set_address_line_1(ADDRESS_LINE_1)
global_express_entry.set_city(CITY)
global_express_entry.set_state(STATE)
global_express_entry.set_postal(POSTAL_CODE)
Example
globalExpressEntry.SetAddressLine1("22382 Avenida Empresa");
globalExpressEntry.SetCity("Rancho Santa Margarita");
globalExpressEntry.SetState("CA");
globalExpressEntry.SetPostal("92688");
global_express_entry.set_address_line_1("22382 Avenida Empresa")
global_express_entry.set_city("Rancho Santa Margarita")
global_express_entry.set_state("CA")
global_express_entry.set_postal("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. The Global Express Entry Cloud API has two different response objects that you can use the encapsulate the response.
When using global related endpoints, please use the GlobalExpressEntryResponse class. When using normal express endpoints, please use the ExpressEntryResponse class.
As a String#
Submit a GET request and get the response as a string.
string response = globalExpressEntry.GetExpressAddress<string>();
response = global_express_entry.get(str)
As a Response Object#
Submit a GET request and encapsulate the response into the Cloud API response object.
Global Express Entry
GlobalExpressEntryResponse responseObject = globalExpressEntry.GetGlobalExpressAddress<GlobalExpressEntryResponse>();
response_object = global_express_entry.get_global_express_address(GlobalExpressEntryResponse)
Express Entry
ExpressEntryResponse responseObject = globalExpressEntry.GetExpressAddress<ExpressEntryResponse>();
response_object = global_express_entry.get_express_address(ExpressEntryResponse)
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 Express Entry 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 Express Entry 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 Express Entry object. |
|
Constructor to initialize the Global Express Entry object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the Global Express Entry object. |
|
Constructor to initialize the Global Express Entry 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 address line 1. |
|
Set the city. |
|
Set the state. |
|
Set the postal code. |
|
Set the free form. |
|
Set the thoroughfare. |
|
Set the locality. |
|
Set the administrative area. |
|
Set the country. |
|
Set the max records. |
|
Set the option. |
|
Set the columns. |
|
Set the native character set. |
|
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 address line 1. |
|
Set the city. |
|
Set the state. |
|
Set the postal code. |
|
Set the free form. |
|
Set the thoroughfare. |
|
Set the locality. |
|
Set the administrative area. |
|
Set the country. |
|
Set the max records. |
|
Set the option. |
|
Set the columns. |
|
Set the native character set. |
|
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 address line 1. |
|
Get the city. |
|
Get the state. |
|
Get the postal code. |
|
Get the free form. |
|
Get the thoroughfare. |
|
Get the locality. |
|
Get the administrative area. |
|
Get the country. |
|
Get the max records. |
|
Get the option. |
|
Get the columns. |
|
Get the native character set. |
|
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 address line 1. |
|
Get the city. |
|
Get the state. |
|
Get the postal code. |
|
Get the free form. |
|
Get the thoroughfare. |
|
Get the locality. |
|
Get the administrative area. |
|
Get the country. |
|
Get the max records. |
|
Get the option. |
|
Get the columns. |
|
Get the native character set. |
|
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 |
---|---|
|
Endpoint: /web/ExpressAddress Makes a synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Endpoint: /web/ExpressAddress Makes an asynchronous GET request to the CloudAPI and returns the response. |
|
Endpoint: /web/ExpressCityState Makes a synchronous GET request to the CloudAPI. |
|
Endpoint: /web/ExpressCityState Makes an asynchronous GET request to the CloudAPI. |
|
Endpoint: /web/ExpressPostalCode Makes a synchronous GET request to the CloudAPI. |
|
Endpoint: /web/ExpressPostalCode Makes an asynchronous GET request. |
|
Endpoint: /web/ExpressStreet Makes a synchronous GET request. |
|
Endpoint: /web/ExpressStreet Makes an asynchronous GET request. |
|
Endpoint: /web/ExpressFreeForm Makes a synchronous GET request. |
|
Endpoint: /web/ExpressFreeForm Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressAddress Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressAddress Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressLocalityAdministrativeArea Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressLocalityAdministrativeArea Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressCountry Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressCountry Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressFreeForm Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressFreeForm Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressPostalCode Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressPostalCode Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressThoroughfare Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressThoroughfare Makes an asynchronous GET request. |
|
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 |
---|---|
|
Endpoint: /web/ExpressAddress Makes a synchronous GET request to the CloudAPI and returns the response. |
|
Endpoint: /web/ExpressAddress Makes an asynchronous GET request. |
|
Endpoint: /web/ExpressCityState Makes a synchronous GET request. |
|
Endpoint: /web/ExpressCityState Makes an asynchronous GET request. |
|
Endpoint: /web/ExpressPostalCode Makes a synchronous GET request. |
|
Endpoint: /web/ExpressPostalCode Makes an asynchronous GET request. |
|
Endpoint: /web/ExpressStreet Makes a synchronous GET request. |
|
Endpoint: /web/ExpressStreet Makes an asynchronous GET request. |
|
Endpoint: /web/ExpressFreeForm Makes a synchronous GET request. |
|
Endpoint: /web/ExpressFreeForm Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressAddress Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressAddress Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressLocalityAdministrativeArea Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressLocalityAdministrativeArea Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressCountry Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressCountry Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressFreeForm Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressFreeForm Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressPostalCode Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressPostalCode Makes an asynchronous GET request. |
|
Endpoint: /web/GlobalExpressThoroughfare Makes a synchronous GET request. |
|
Endpoint: /web/GlobalExpressThoroughfare Makes an asynchronous GET request. |
|
Makes a synchronous getversion request and returns the parsed Cloud API version. |
|
Makes an asynchronous getversion request and returns the parsed Cloud API version. |