SSN Name Match#

Introduction#

SSN Name Match can:
  • Verify SSN syntax is correct

  • Verify the SSN exists

  • Match First and Last Name to the SSN

  • Perform deceased suppression based upon SSN

Click here to learn more about the SSN Name Match 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, SSN Name Match will not function.

Initialization#

There are two different constructors that you can utilize when initializing SSN Name Match.

SSNNameMatch(string license)

Initialize the Cloud API object with a license key

  • C#
  • Python
SSNNameMatch ssnNameMatch = new SSNNameMatch(MELISSA_LICENSE_KEY);
ssn_name_match = SSNNameMatch(MELISSA_LICENSE_KEY)

SSNNameMatch()

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.

  • C#
  • Python
SSNNameMatch ssnNameMatch = new SSNNameMatch()
ssn_name_match = SSNNameMatch()

Configuration#

SSN Name Match 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 SSNNameMatchPostRequest 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

  • C#
  • Python
ssnNameMatch.SetValue("SSN", SSN);
ssn_name_match.set_value("ssn", SSN)

Example

  • C#
  • Python
ssnNameMatch.SetValue("SSN", "111223333");
ssn_name_match.set_value("ssn", "111223333")
Method 2: Using Direct Property Access#

This allows you to set values directly using the Cloud API’s parameter names.

Format

  • C#
  • Python
ssnNameMatch.SSN = SSN;
ssn_name_match.ssn = SSN

Example

  • C#
  • Python
ssnNameMatch.SSN = "111223333";
ssn_name_match.ssn = "111223333"
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

  • C#
  • Python
ssnNameMatch.SetSSN(SSN);
ssn_name_match.set_ssn(SSN)

Example

  • C#
  • Python
ssnNameMatch.SetSSN("111223333");
ssn_name_match.set_ssn("111223333")

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 SSNNameMatchPostRequest 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

  • C#
  • Python
ssnNameMatch.SetPostBody(new SSNNameMatchPostRequest
{
  CustomerID = MELISSA_LICENSE_KEY,
  Records = new List<SSNNameMatchRecordRequest>
  {
    new SSNNameMatchRecordRequest
    {
      RecordID = RECORD_ID,
      SSN = SSN
    },
    new SSNNameMatchRecordRequest
    {
      RecordID = RECORD_ID,
      SSN = SSN
    }
  }
});
ssn_name_match.set_post_body(SSNNameMatchPostRequest(
  customer_id = MELISSA_LICENSE_KEY,
  records=[
    SSNNameMatchRecordRequest(
      record_id = RECORD_ID,
      ssn = SSN
    ),
    SSNNameMatchRecordRequest(
      record_id = RECORD_ID,
      ssn = SSN
    )
  ]
))

Example

  • C#
  • Python
ssnNameMatch.SetPostBody(new SSNNameMatchPostRequest
{
  CustomerID = MELISSA_LICENSE_KEY,
  Records = new List<SSNNameMatchRecordRequest>
  {
    new SSNNameMatchRecordRequest
    {
      RecordID = "1",
      SSN = "111223333"
    },
    new SSNNameMatchRecordRequest
    {
      RecordID = "2",
      SSN = "419251021"
    }
  }
});
ssn_name_match.set_post_body(SSNNameMatchPostRequest(
  customer_id = MELISSA_LICENSE_KEY,
  records=[
    SSNNameMatchRecordRequest(
      record_id = "1",
      ssn = "111223333"
    ),
    SSNNameMatchRecordRequest(
      record_id = "2",
      ssn = "419251021"
    )
  ]
))
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

  • C#
  • Python
ssnNameMatch.SetLicense(MELISSA_LICENSE_KEY);

ssnNameMatch.AddRecord(new SSNNameMatchRecordRequest
{
  RecordID = RECORD_ID,
  SSN = SSN
});

ssnNameMatch.AddRecord(new SSNNameMatchRecordRequest
{
  RecordID = RECORD_ID,
  SSN = SSN
});
ssn_name_match = SSNNameMatch(MELISSA_LICENSE_KEY)

ssn_name_match.add_record(SSNNameMatchRecordRequest(
  record_id = RECORD_ID,
  ssn = SSN
))

ssn_name_match.add_record(SSNNameMatchRecordRequest(
  record_id = RECORD_ID,
  ssn = SSN
))

Example

  • C#
  • C#
ssnNameMatch.SetLicense(MELISSA_LICENSE_KEY);

ssnNameMatch.AddRecord(new SSNNameMatchRecordRequest
{
  RecordID = "1",
  SSN = "111223333"
});

ssnNameMatch.AddRecord(new SSNNameMatchRecordRequest
{
  RecordID = "2",
  SSN = "419251021"
});
ssn_name_match = SSNNameMatch(MELISSA_LICENSE_KEY)

ssn_name_match.add_record(SSNNameMatchRecordRequest(
  record_id = "1",
  ssn = "111223333"
))

ssn_name_match.add_record(SSNNameMatchRecordRequest(
  record_id =  "2",
  ssn = "419251021"
))

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.

  • C#
  • Python
string response = ssnNameMatch.Get<string>();
response = ssn_name_match.get(str)
  • C#
  • Python
string response = ssnNameMatch.Post<string>();
response = ssn_name_match.post(str)

As a Response Object#

Submit a GET or POST request and encapsulate the response into the Cloud API response object.

  • C#
  • Python
SSNNameMatchResponse responseObject = ssnNameMatch.Get<SSNNameMatchResponse>();
response = ssn_name_match.get(SSNNameMatchResponse)
  • C#
  • Python
SSNNameMatchResponse responseObject = ssnNameMatch.Post<SSNNameMatchResponse>();
response = ssn_name_match.post(SSNNameMatchResponse)
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 SSN Name Match 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.

  • C#
  • Python
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.

  • C#
  • Python
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.

  • C#
  • Python
record.GetRecordID();
record.GetResults();
record.get_record_id()
record.get_results()

Methods#

The methods listed below pertain to the SSN Name Match 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#
  • Python

Method

Description

SSNNameMatch()

Constructor to initialize the SSN Name Match object.

SSNNameMatch(string license)

Constructor to initialize the SSN Name Match object with a license string.

Method

Description

SSNNameMatch()

Constructor to initialize the SSN Name Match object.

SSNNameMatch(license)

Constructor to initialize the SSN Name Match 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.

  • C#
  • Python

Method

Description

void SetBaseUrl(string baseUrl)

Set the base URL.

void SetLicense(string license)

Set the license string.

void SetEndpoint(string endpoint)

Set the endpoint.

void SetFormat(string format)

Set the format.

void SetSSN(string ssn)

Set the SSN.

void SetFirstName(string firstName)

Set the first name.

void SetLastName(string lastName)

Set the last name.

void SetFullName(string fullName)

Set the full name.

void SetTransmissionReference(string transmissionReference)

Set the transmission reference.

void SetValue(string parameter, string value)

Set the input parameter to a specified value.

void SetPostBody(SSNNameMatchBatchRequest postBody)

Set the post body for post requests.

Method

Description

set_base_url(base_url)

Set the base URL.

set_license(license)

Set the license string.

set_endpoint(endpoint)

Set the endpoint.

set_format(format)

Set the format.

set_ssn(ssn)

Set the SSN.

set_first_name(first_name)

Set the first name.

set_last_name(last_name)

Set the last name.

set_full_name(full_name)

Set the full name.

set_transmission_reference(transmission_reference)

Set the transmission reference.

set_value(parameter, value)

Set the input parameter to a specified value.

set_post_body(post_body)

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.

  • C#
  • Python

Method

Description

string GetBaseUrl()

Get the base URL.

string GetLicense()

Get the license string.

string GetEndpoint()

Get the endpoint.

string GetFormat()

Get the format.

string GetSSN()

Get the SSN.

string GetFirstName()

Get the first name.

string GetLastName()

Get the last name.

string GetFullName()

Get the full name.

string GetTransmissionReference()

Get the transmission reference.

void GetValue(string parameter)

Get the value of an input parameter.

SSNNameMatchBatchRequest GetPostBody()

Get the post body for post requests.

Method

Description

get_base_url()

Get the base URL.

get_license()

Get the license string.

get_endpoint()

Get the endpoint.

get_format()

Get the format.

get_ssn()

Get the SSN.

get_first_name()

Get the first name.

get_last_name()

Get the last name.

get_full_name()

Get the full name.

get_transmission_reference()

Get the transmission reference.

get_value(parameter)

Get the value of an input parameter.

get_post_body()

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.

  • C#
  • Python

Method

Description

void AddRecord(SSNNameMatchRecordRequest record)

Add record to internal list for post body assembly.

void ClearRecords()

Clear the internal list of records.

T Get<T>()

Makes the synchronous GET request to the CloudAPI and returns the response (string or deserialized response object).

async Task<T> GetAsync<T>()

Makes the asynchronous GET request to the CloudAPI and returns the response (string or deserialized response object).

T Post<T>()

Makes a synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object).

async Task<T> PostAsync<T>()

Makes an asynchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object).

string GetApiVersion()

Makes a synchronous getversion request and returns the parsed Cloud API version.

async Task<string> GetApiVersionAsync()

Makes an asynchronous getversion request and returns the parsed Cloud API version.

Method

Description

add_record(record)

Add record to internal list for post body assembly.

clear_records()

Clear the internal list of records.

get(response_type)

Makes a synchronous GET request to the CloudAPI and returns the response (string or deserialized response object).

get_async(response_type)

Makes an asynchronous GET request to the CloudAPI and returns the response (string or deserialized response object).

post(response_type)

Makes a synchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object).

post_async(response_type)

Makes an asynchronous POST request to the CloudAPI using the post body and returns the response (string or deserialized response object).

get_api_version()

Makes a synchronous getversion request and returns the parsed Cloud API version.

get_api_version_async()

Makes an asynchronous getversion request and returns the parsed Cloud API version.