Business Coder#
Introduction#
- Business Coder can:
Search for businesses using the phone number, stock ticker, and web address.
Discover business SIC codes, sales volumes, employee sizes, phone numbers, etc.
Click here to learn more about the Business Coder 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, Business Coder will not function.
Initialization#
There are two different constructors that you can utilize when initializing Business Coder.
Initialize the Cloud API object with a license key
BusinessCoder businessCoder = new BusinessCoder(MELISSA_LICENSE_KEY);
business_coder = BusinessCoder(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.
BusinessCoder businessCoder = new BusinessCoder()
business_coder = BusinessCoder()
Configuration#
Business Coder 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 BusinessCoderPostRequest 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
businessCoder.SetValue("Company", COMPANY);
businessCoder.SetValue("AddressLine1", ADDRESS_LINE_1);
businessCoder.SetValue("City", CITY);
businessCoder.SetValue("State", STATE);
businessCoder.SetValue("Postal", POSTAL_CODE);
businessCoder.SetValue("Country", COUNTRY);
business_coder.set_value("company", COMPANY)
business_coder.set_value("address_line_1", ADDRESS_LINE_1)
business_coder.set_value("city", CITY)
business_coder.set_value("state", STATE)
business_coder.set_value("postal", POSTAL_CODE)
business_coder.set_value("country", COUNTRY)
Example
businessCoder.SetValue("Company", "Melissa");
businessCoder.SetValue("AddressLine1", "22382 Avenida Empresa");
businessCoder.SetValue("City", "Rancho Santa Margarita");
businessCoder.SetValue("State", "CA");
businessCoder.SetValue("Postal", "92688");
businessCoder.SetValue("Country", "United States");
business_coder.set_value("company", "Melissa")
business_coder.set_value("address_line_1", "22382 Avenida Empresa")
business_coder.set_value("city", "Rancho Santa Margarita")
business_coder.set_value("state", "CA")
business_coder.set_value("postal", "92688")
business_coder.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
businessCoder.Company = COMPANY;
businessCoder.AddressLine1 = ADDRESS_LINE_1;
businessCoder.City = CITY;
businessCoder.State = STATE;
businessCoder.Postal = POSTAL_CODE;
businessCoder.Country = COUNTRY;
business_coder.company = COMPANY
business_coder.address_line_1 = ADDRESS_LINE_1
business_coder.city = CITY
business_coder.state = STATE
business_coder.postal = POSTAL_CODE
business_coder.country = COUNTRY
Example
businessCoder.Company = "Melissa";
businessCoder.AddressLine1 = "22382 Avenida Empresa";
businessCoder.City = "Rancho Santa Margarita";
businessCoder.State = "CA";
businessCoder.Postal = "92688";
businessCoder.Country = "United States";
business_coder.company = "Melissa";
business_coder.address_line_1 = "22382 Avenida Empresa";
business_coder.city = "Rancho Santa Margarita";
business_coder.state = "CA";
business_coder.postal = "92688";
business_coder.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
businessCoder.SetCompany(COMPANY);
businessCoder.SetAddressLine1(ADDRESS_LINE_1);
businessCoder.SetCity(CITY);
businessCoder.SetState(STATE);
businessCoder.SetPostal(POSTAL_CODE);
businessCoder.SetCountry(COUNTRY);
business_coder.set_company(COMPANY)
business_coder.set_address_line_1(ADDRESS_LINE_1)
business_coder.set_city(CITY)
business_coder.set_state(STATE)
business_coder.set_postal(POSTAL_CODE)
business_coder.set_country(COUNTRY)
Example
businessCoder.SetCompany("Melissa");
businessCoder.SetAddressLine1("22382 Avenida Empresa");
businessCoder.SetCity("Rancho Santa Margarita");
businessCoder.SetState("CA");
businessCoder.SetPostal("92688");
businessCoder.SetCountry("United States");
business_coder.set_company("Melissa")
business_coder.set_address_line_1("22382 Avenida Empresa")
business_coder.set_city("Rancho Santa Margarita")
business_coder.set_state("CA")
business_coder.set_postal("92688")
business_coder.set_country("United States")
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 BusinessCoderPostRequest 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
businessCoder.SetPostBody(new BusinessCoderPostRequest
{
Id = MELISSA_LICENSE_KEY,
Records = new List<BusinessCoderRecordRequest>
{
new BusinessCoderRecordRequest
{
A1 = ADDRESS_LINE_1,
City = CITY,
Postal = POSTAL_CODE,
State = STATE
},
new BusinessCoderRecordRequest
{
A1 = ADDRESS_LINE_1,
City = CITY,
Postal = POSTAL_CODE,
State = STATE
},
}
});
business_coder.set_post_body(BusinessCoderPostRequest(
id=MELISSA_LICENSE_KEY,
records=[
BusinessCoderRecordRequest(
a1 = ADDRESS_LINE_1,
city = CITY,
postal = POSTAL_CODE,
state = STATE
),
BusinessCoderRecordRequest(
a1 = ADDRESS_LINE_1,
city = CITY,
postal = POSTAL_CODE,
state = STATE
)
]
))
Example
businessCoder.SetPostBody(new BusinessCoderPostRequest
{
Id = MELISSA_LICENSE_KEY,
Records = new List<BusinessCoderRecordRequest>
{
new BusinessCoderRecordRequest
{
A1 = "22382 Avenida Empresa",
City = "Rancho Santa Margarita",
Postal = "92688",
State = "California"
},
new BusinessCoderRecordRequest
{
A1 = "1 Microsoft Way",
City = "Redmond",
Postal = "98052",
State = "Washington"
},
}
});
business_coder.set_post_body(BusinessCoderPostRequest(
id=MELISSA_LICENSE_KEY,
records=[
BusinessCoderRecordRequest(
a1="22382 Avenida Empresa",
city="Rancho Santa Margarita",
postal="92688",
state="California"
),
BusinessCoderRecordRequest(
a1="1 Microsoft Way",
city="Redmond",
postal="98052",
state="Washington"
)
]
))
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
businessCoder.SetLicense(MELISSA_LICENSE_KEY);
businessCoder.AddRecord(
new BusinessCoderRecordRequest
{
A1 = ADDRESS_LINE_1,
City = CITY,
Postal = POSTAL_CODE,
State = STATE
}
);
businessCoder.AddRecord(
new BusinessCoderRecordRequest
{
A1 = ADDRESS_LINE_1,
City = CITY,
Postal = POSTAL_CODE,
State = STATE
}
);
business_coder.set_license(MELISSA_LICENSE_KEY)
business_coder.add_record(BuinessCoderRecordRequest(
A1 = ADDRESS_LINE_1,
City = CITY,
Postal = POSTAL_CODE,
State = STATE
))
business_coder.add_record(BuinessCoderRecordRequest(
A1 = ADDRESS_LINE_1,
City = CITY,
Postal = POSTAL_CODE,
State = STATE
))
Example
businessCoder.SetLicense(MELISSA_LICENSE_KEY);
businessCoder.AddRecord(
new BusinessCoderRecordRequest
{
A1 = "22382 Avenida Empresa",
City = "Rancho Santa Margarita",
Postal = "92688",
State = "California"
}
);
businessCoder.AddRecord(
new BusinessCoderRecordRequest
{
A1 = "1 Microsoft Way",
City = "Redmond",
Postal = "98052",
State = "Washington"
}
);
business_coder.set_license(MELISSA_LICENSE_KEY)
business_coder.add_record(BuinessCoderRecordRequest(
A1 = "22382 Avenida Empresa",
City = "Rancho Santa Margarita",
Postal = "92688",
State = "California"
))
business_coder.add_record(BuinessCoderRecordRequest(
A1 = "1 Microsoft Way",
City = "Redmond",
Postal = "98052",
State = "Washington"
))
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 = businessCoder.Get<string>();
response = business_coder.get(str)
string response = businessCoder.Post<string>();
response = business_coder.post(str)
As a Response Object#
Submit a GET or POST request and encapsulate the response into the Cloud API response object.
BusinessCoderResponse responseObject = businessCoder.Get<BusinessCoderResponse>();
response_object = business_coder.get(BusinessCoderResponse)
BusinessCoderResponse responseObject = businessCoder.Post<BusinessCoderResponse>();
response_object = business_coder.post(BusinessCoderResponse)
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 Business Coder 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 Business Coder 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 Business Coder object. |
|
Constructor to initialize the Business Coder object with a license string. |
Method |
Description |
---|---|
|
Constructor to initialize the Business Coder object. |
|
Constructor to initialize the Business Coder 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 for the API. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the record ID. |
|
Set the company name. |
|
Set the phone number. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the suite. |
|
Set the city. |
|
Set the state. |
|
Set the postal code. |
|
Set the country. |
|
Set the MAK number. |
|
Set the stock ticker. |
|
Set the web URL. |
|
Set the MEK number. |
|
Set the free form text. |
|
Set the transmission reference. |
|
Set the options. |
|
Set the columns to be returned in the response. |
|
Set the input parameter to a specified value. |
|
Set the post body for batch requests. |
Method |
Description |
---|---|
|
Set the base URL for the API. |
|
Set the license string. |
|
Set the endpoint. |
|
Set the format. |
|
Set the record ID. |
|
Set the company name. |
|
Set the phone number. |
|
Set the address line 1. |
|
Set the address line 2. |
|
Set the suite. |
|
Set the city. |
|
Set the state. |
|
Set the postal code. |
|
Set the country. |
|
Set the MAK number. |
|
Set the stock ticker. |
|
Set the web URL. |
|
Set the MEK number. |
|
Set the free form text. |
|
Set the transmission reference. |
|
Set the options. |
|
Set the columns to be returned in the response. |
|
Set the input parameter to a specified value. |
|
Set the post body for batch requests. |
Get 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 |
---|---|
|
Get the base URL for the API. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the record ID. |
|
Get the company name. |
|
Get the phone number. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the suite. |
|
Get the city. |
|
Get the state. |
|
Get the postal code. |
|
Get the country. |
|
Get the MAK number. |
|
Get the stock ticker. |
|
Get the web URL. |
|
Get the MEK number. |
|
Get the free form text. |
|
Get the transmission reference. |
|
Get the options. |
|
Get the columns to be returned in the response. |
|
Get the value of an input parameter. |
|
Get the post body for batch requests. |
Method |
Description |
---|---|
|
Get the base URL for the API. |
|
Get the license string. |
|
Get the endpoint. |
|
Get the format. |
|
Get the record ID. |
|
Get the company name. |
|
Get the phone number. |
|
Get the address line 1. |
|
Get the address line 2. |
|
Get the suite. |
|
Get the city. |
|
Get the state. |
|
Get the postal code. |
|
Get the country. |
|
Get the MAK number. |
|
Get the stock ticker. |
|
Get the web URL. |
|
Get the MEK number. |
|
Get the free form text. |
|
Get the transmission reference. |
|
Get the options. |
|
Get the columns to be returned in the response. |
|
Get the value of an input parameter. |
|
Get the post body for batch 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 a record to the internal list for batch post body assembly. |
|
Clear the internal list of records. |
|
Makes a synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes an 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 a record to the internal list for batch post body assembly. |
|
Clear the internal list of records. |
|
Makes a synchronous GET request to the CloudAPI and returns the response (string or deserialized response object). |
|
Makes an 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. |