Smart Mover#
Introduction#
- Smart Mover can:
Keep contact addresses from the US and Canada up to date.
Standardize and validate addresses
Click here to learn more about the Smart Mover 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, Smart Mover will not function.
Initialization#
There are two different constructors that you can utilize when initializing Smart Mover.
Initialize the Cloud API object with a license key
SmartMover smartMover = new SmartMover(MELISSA_LICENSE_KEY);
smart_mover = SmartMover(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.
SmartMover smartMover = new SmartMover()
smart_mover = SmartMover()
Configuration#
Smart Mover 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 SmartMoverPostRequest 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
smartMover.SetValue("PafId", PAF_ID);
smartMover.SetValue("Company", COMPANY);
smartMover.SetValue("FullName", FULL_NAME);
smartMover.SetValue("AddressLine1", ADDRESS_LINE_1);
smartMover.SetValue("City", CITY);
smartMover.SetValue("State", STATE);
smartMover.SetValue("Postal", POSTAL_CODE);
smartMover.SetValue("Country", COUNTRY);
smart_mover.set_value("paf_id", PAF_ID)
smart_mover.set_value("company", COMPANY)
smart_mover.set_value("full_ame", FULL_NAME)
smart_mover.set_value("address_line_1", ADDRESS_LINE_1)
smart_mover.set_value("city", CITY)
smart_mover.set_value("state", STATE)
smart_mover.set_value("postal", POSTAL_CODE)
smart_mover.set_value("country", COUNTRY)
Example
smartMover.SetValue("PafId", PAF_ID);
smartMover.SetValue("Company", "Melissa");
smartMover.SetValue("FullName", "Raymond Melissa");
smartMover.SetValue("AddressLine1", "22382 Avenida Empresa");
smartMover.SetValue("City", "Rancho Santa Margarita");
smartMover.SetValue("State", "CA");
smartMover.SetValue("Postal", "92688");
smartMover.SetValue("Country", "US");
smart_mover.set_value("paf_id", PAF_ID)
smart_mover.set_value("company", "Melissa")
smart_mover.set_value("full_ame", "Raymond Melissa")
smart_mover.set_value("address_line_1", "22382 Avenida Empresa")
smart_mover.set_value("city", "Rancho Santa Margarita")
smart_mover.set_value("state", "CA")
smart_mover.set_value("postal", "92688")
smart_mover.set_value("country", "US")
Method 2: Using Direct Property Access#
This allows you to set values directly using the Cloud API’s parameter names.
Format
smartMover.PafId = PAF_ID;
smartMover.Company = COMPANY;
smartMover.FullName = FULL_NAME;
smartMover.AddressLine1 = ADDRESS_LINE_1;
smartMover.City = CITY;
smartMover.State = STATE;
smartMover.Postal = POSTAL_CODE;
smartMover.Country = COUNTRY;
smart_mover.paf_d = PAF_ID
smart_mover.company = COMPANY
smart_mover.full_name = FULL_NAME
smart_mover.address_line_1 = ADDRESS_LINE_1
smart_mover.city = CITY
smart_mover.state = STATE
smart_mover.postal = POSTAL_CODE
smart_mover.country = COUNTRY
Example
smartMover.PafId = PAF_ID;
smartMover.Company = "Melissa";
smartMover.FullName = "Raymond Melissa";
smartMover.AddressLine1 = "22382 Avenida Empresa";
smartMover.City = "Rancho Santa Margarita";
smartMover.State = "CA";
smartMover.Postal = "92688";
smartMover.Country = "US";
smart_mover.paf_id = PAF_ID
smart_mover.company = "Melissa"
smart_mover.full_name = "Raymond Melissa"
smart_mover.address_line_1 = "22382 Avenida Empresa"
smart_mover.city = "Rancho Santa Margarita"
smart_mover.state = "CA"
smart_mover.postal = "92688"
smart_mover.country = "US"
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
smartMover.SetPafID(PAF_ID);
smartMover.SetCompany(COMPANY);
smartMover.SetFullName(FULL_NAME);
smartMover.SetAddressLine1(ADDRESS_LINE_1);
smartMover.SetCity(CITY);
smartMover.SetState(STATE);
smartMover.SetPostal(POSTAL_CODE);
smartMover.SetCountry(COUNTRY);
smart_mover.set_paf_id(PAF_ID)
smart_mover.set_company(COMPANY)
smart_mover.set_full_name(FULL_NAME)
smart_mover.set_address_line_1(ADDRESS_LINE1)
smart_mover.set_city(CITY)
smart_mover.set_state(STATE)
smart_mover.set_postal(POSTAL_CODE)
smart_mover.set_country(COUNTRY)
Example
smartMover.SetPafID(PAF_ID);
smartMover.SetCompany("Melissa");
smartMover.SetFullName("Raymond Melissa");
smartMover.SetAddressLine1("22382 Avenida Empresa");
smartMover.SetCity("Rancho Santa Margarita");
smartMover.SetState("CA");
smartMover.SetPostal("92688");
smartMover.SetCountry("US");
smart_mover.set_paf_id(PAF_ID)
smart_mover.set_company("Melissa")
smart_mover.set_full_name("Raymond Melissa")
smart_mover.set_address_line_1("22382 Avenida Empresa")
smart_mover.set_city("Rancho Santa Margarita")
smart_mover.set_state("CA")
smart_mover.set_postal("92688")
smart_mover.set_country("US")
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 SmartMoverPostRequest 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
smartMover.SetPostBody(new SmartMoverPostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
PAFId = PAF_ID,
Records = new List<SmartMoverRecordRequest>
{
new SmartMoverRecordRequest
{
RecordID = RECORD_ID,
Company = COMPANY,
NameFull = FULL_NAME,
AddressLine1 = ADDRESS_LINE1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE,
Country = COUNTRY
},
new SmartMoverRecordRequest
{
RecordID = RECORD_ID,
Company = COMPANY,
NameFull = FULL_NAME,
AddressLine1 = ADDRESS_LINE1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE,
Country = COUNTRY
}
}
});
smart_mover.set_post_body( SmartMoverPostRequest(
customer_id=license_key,
paf_id=paf_id,
records=[
SmartMoverRecordRequest
(
record_id = RECORD_ID,
company = COMPANY,
name_full = FULL_NAME,
address_line_1 = ADDRESS_LINE1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE,
country = COUNTRY
),
SmartMoverRecordRequest
(
record_id = RECORD_ID,
company = COMPANY,
name_full = FULL_NAME,
address_line_1 = ADDRESS_LINE1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE,
country = COUNTRY
)
]
))
Example
smartMover.SetPostBody(new SmartMoverPostRequest
{
CustomerID = MELISSA_LICENSE_KEY,
PAFId = PAF_ID,
Records = new List<SmartMoverRecordRequest>
{
new SmartMoverRecordRequest
{
RecordID = "1",
Company = "Melissa",
NameFull = "Raymond Melissa",
AddressLine1 = "22382 Avenida Empresa",
City = "Rancho Santa Margarita",
State = "CA",
PostalCode = "92688",
Country = "US"
},
new SmartMoverRecordRequest
{
RecordID = "2",
Company = "Microsoft",
NameFull = "Bill Gates",
AddressLine1 = "1 Microsoft Way",
City = "Redmond",
State = "WA",
PostalCode = "98052",
Country = "US"
}
}
});
smart_mover.set_post_body( SmartMoverPostRequest(
customer_id=license_key,
paf_id=paf_id,
records=[
SmartMoverRecordRequest
(
record_id = "1",
company = "Melissa",
name_full = "Raymond Melissa",
address_line_1 = "22382 Avenida Empresa",
city = "Rancho Santa Margarita",
state = "CA",
postal_code = "92688",
country = "US"
),
SmartMoverRecordRequest
(
record_id = "2",
company = "Microsoft",
name_full = "Bill Gates",
address_line_1 = "1 Microsoft Way",
city = "Redmond",
state = "WA",
postal_code = "98052",
country = "US"
)
]
))
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
smartMover.SetLicense(MELISSA_LICENSE_KEY);
smartMover.SetPafID(PAF_ID);
smartMover.AddRecord(new SmartMoverRecordRequest
{
RecordID = RECORD_ID,
Company = COMPANY,
NameFull = FULL_NAME,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE,
Country = COUNTRY
});
smartMover.AddRecord(new SmartMoverRecordRequest
{
RecordID = RECORD_ID,
Company = COMPANY,
NameFull = FULL_NAME,
AddressLine1 = ADDRESS_LINE_1,
City = CITY,
State = STATE,
PostalCode = POSTAL_CODE,
Country = COUNTRY
});
smart_mover = SmartMover(license_key)
smart_mover.set_paf_id(paf_id)
smart_mover.add_record(SmartMoverRecordRequest(
record_id = RECORD_ID,
company = COMPANY,
name_full = FULL_NAME,
address_line_1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE,
country = COUNTRY
)
)
smart_mover.add_record(SmartMoverRecordRequest(
record_id = RECORD_ID,
company = COMPANY,
name_full = FULL_NAME,
address_line_1 = ADDRESS_LINE_1,
city = CITY,
state = STATE,
postal_code = POSTAL_CODE,
country = COUNTRY
)
)
Example
smartMover.SetLicense(MELISSA_LICENSE_KEY);
smartMover.SetPafID(PAF_ID);
smartMover.AddRecord(new SmartMoverRecordRequest
{
RecordID = "1",
Company = "Melissa",
NameFull = "Ray Melissa",
AddressLine1 = "22382 Avenida Empresa",
City = "Rancho Santa Margarita",
State = "CA",
PostalCode = "92688",
Country = "US"
});
smartMover.AddRecord(new SmartMoverRecordRequest
{
RecordID = "2",
Company = "Microsoft",
NameFull = "Bill Gates",
AddressLine1 = "1 Microsoft Way",
City = "Redmond",
State = "WA",
PostalCode = "98052",
Country = "US"
});
smart_mover = SmartMover(license_key)
smart_mover.set_paf_id(paf_id)
smart_mover.add_record(SmartMoverRecordRequest(
record_id = "1",
company = "Melissa",
name_full = "Ray Melissa",
address_line_1 = "22382 Avenida Empresa",
city = "Rancho Santa Margarita",
state = "CA",
postal_code = "92688",
country = "US"
)
)
smart_mover.add_record(SmartMoverRecordRequest(
record_id = "2",
company = "Microsoft",
name_full = "Bill Gates",
address_line_1 = "1 Microsoft Way",
city = "Redmond",
state = "WA",
postal_code = "98052",
country = "US"
)
)
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 = smartMover.Get<string>();
response = smart_mover.get(str)
string response = smartMover.Post<string>();
response = smart_mover.post(str)
As a Response Object#
Submit a GET or POST request and encapsulate the response into the Cloud API response object.
SmartMoverResponse responseObject = smartMover.Get<SmartMoverResponse>();
response = smart_mover.get(SmartMoverResponse)
SmartMoverResponse responseObject = smartMover.Post<SmartMoverResponse>();
response = smart_mover.post(SmartMoverResponse)
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 Smart Mover 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 Smart Mover 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 Smart Mover object. |
|
Constructor to initialize the Smart Mover object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the Smart Mover object. |
|
Constructor to initialize the Smart Mover 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 job ID. |
|
Set the paf ID. |
|
Set the action. |
|
Set the list. |
|
Set the company. |
|
Set the full name. |
|
Set the first name. |
|
Set the middle name. |
|
Set the name prefix. |
|
Set the name suffix. |
|
Set the last name. |
|
Set the urbanization. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the suite. |
|
Set the private mailbox. |
|
Set the city. |
|
Set the state. |
|
Set the postal code. |
|
Set the plus 4. |
|
Set the country. |
|
Set the transmission reference. |
|
Set the option. |
|
Set the columns. |
|
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 job ID. |
|
Set the paf ID. |
|
Set the action. |
|
Set the list. |
|
Set the company. |
|
Set the full name. |
|
Set the first name. |
|
Set the middle name. |
|
Set the name prefix. |
|
Set the name suffix. |
|
Set the last name. |
|
Set the urbanization. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the suite. |
|
Set the private mailbox. |
|
Set the city. |
|
Set the state. |
|
Set the postal code. |
|
Set the plus 4. |
|
Set the country. |
|
Set the transmission reference. |
|
Set the option. |
|
Set the columns. |
|
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 job ID. |
|
Get the paf ID. |
|
Get the action. |
|
Get the list. |
|
Get the company. |
|
Get the full name. |
|
Get the first name. |
|
Get the middle name. |
|
Get the name prefix. |
|
Get the name suffix. |
|
Get the last name. |
|
Get the urbanization. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the suite. |
|
Get the private mailbox. |
|
Get the city. |
|
Get the state. |
|
Get the postal code. |
|
Get the plus 4. |
|
Get the country. |
|
Get the transmission reference. |
|
Get the option. |
|
Get the columns. |
|
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 job ID. |
|
Get the paf ID. |
|
Get the action. |
|
Get the list. |
|
Get the company. |
|
Get the full name. |
|
Get the first name. |
|
Get the middle name. |
|
Get the name prefix. |
|
Get the name suffix. |
|
Get the last name. |
|
Get the urbanization. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the suite. |
|
Get the private mailbox. |
|
Get the city. |
|
Get the state. |
|
Get the postal code. |
|
Get the plus 4. |
|
Get the country. |
|
Get the transmission reference. |
|
Get the option. |
|
Get the columns. |
|
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. |