How to Enrich an Input Lead with Additional Data Fields in C# .NET Framework
2 min readJul 14, 2020
You maybe saying to yourself: “What has my life come to when I spend my entire afternoon trying to dealing enriching input leads?” Well, that sounds like a great way to begin a mid-life crisis, which is why I’m here to rescue you from that potential fate. Why should anyone have to deal with such tedious coding, is what I say. So here we go, the super fast method for input lead enrichment in C#!
First we will download our NuGet package with this command:
Install-Package Cloudmersive.APIClient.NET.Validate -Version 3.0.6
Now call this:
using System;using System.Diagnostics;using Cloudmersive.APIClient.NET.Validate.Api;using Cloudmersive.APIClient.NET.Validate.Client;using Cloudmersive.APIClient.NET.Validate.Model;namespace Example{public class LeadEnrichmentEnrichLeadExample{public void main(){// Configure API key authorization: ApikeyConfiguration.Default.AddApiKey("Apikey", "YOUR_API_KEY");// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed// Configuration.Default.AddApiKeyPrefix("Apikey", "Bearer");var apiInstance = new LeadEnrichmentApi();var request = new LeadEnrichmentRequest(); // LeadEnrichmentRequest | Input lead with known fields set, and unknown fields left blank (null)try{// Enrich an input lead with additional fields of dataLeadEnrichmentResponse result = apiInstance.LeadEnrichmentEnrichLead(request);Debug.WriteLine(result);}catch (Exception e){Debug.Print("Exception when calling LeadEnrichmentApi.LeadEnrichmentEnrichLead: " + e.Message );}}}}
Boom! Done!