Global Express Entry Packages#
Packages/Samples covers the usage of Melissa Cloud APIs using popular third party tools, platforms, and programming languages. None of these are required but they can certainly get you up and running quickly.
For installation instructions and more detailed info, visit our Package Installation Guide: Installation Guide.
NuGet and Pip#
Melissa has developed an SDK for both NuGet (C# .NET) and pip (Python). Both environments follow the same patterns and naming convention so we will group them together.
GET Request#
Example
// Initialize the Global Express Entry
GlobalExpressEntry globalExpressEntry = new GlobalExpressEntry(MELISSA_LICENSE_KEY);
// Set the parameters
globalExpressEntry.AddressLine1 = "22382 Avenida Empresa";
globalExpressEntry.City = "Rancho Santa Margarita";
globalExpressEntry.State = "CA";
globalExpressEntry.Postal = "92688";
// Make the GET request
GlobalExpressEntryResponse responseObject = globalExpressEntry.Get<GlobalExpressEntryResponse>();
// Access the response value
string recId = responseObject.RecordID;
# Initialize the Global Express Entry
global_express_entry = GlobalExpressEntry(MELISSA_LICENSE_KEY)
# Set the parameters
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"
# Make the GET request
response_object = global_express_entry.get(GlobalExpressEntryResponse)
# Access the response value
rec_id = response_object.record_id
For more information on the Global Express Entry Packages please click here.
To see detailed Sample Code for this package see:
OpenAPI (Swagger)#
OpenAPI is a popular specification for describing REST APIs. By providing swagger JSON documents, you can automatically generate client code and test applications.
Melissa is working on providing a swagger JSON document for our services. Please stay tuned!
Postman#
Postman is a quick and easy way to test raw HTTP requests and responses. Using our pre-made request templates, you can start testing and generating code snippets for our Cloud APIs in seconds.
Sample Code#
Language  | 
Repository  | 
|---|---|
C# .NET  | 
|
Python3  |