|
| Recent
Articles |
OpenID Implementation In C# & ASP.NET Over the weekend I began looking more deeply into OpenID than I have before. I've always been intrigued by OpenID, but the information about it in terms...
IDataRecord Fields To Dictionary Extension Method I have never been a fan of directly passing IDataRecords, or IDataReaders for that matter, about the place to get simple field values out. herefore, with the introduction...
ECMAScript, The New C++? Everything but a call for a kitchen sink subroutine has been tossed into ECMAScript 4, leaving a couple of bloggers wondering why. ECMAScript has appeal...
Responses To Microsoft Releasing .NET 3.5 Source So far the views from Dave, whurley, Matt and others have been negative to handle with caution. After I heard that Microsoft was releasing the .NET 3.5 source...
Resolve & Shorten URLs In C# Recently I've needed a method that would look at some text and automatically discover all URLs and turn them into hyperlinks. I've done that before so it was...
Yahoo SiteExplorer API With C# If you are interested in using Yahoo's SiteExplorer API and are coding in the ASP.NET environment using C# (web pages) then the following method might be of...
|
 |
|
|
02.22.08 ZoomInfo API - ASP.NET C# By
Manoj Jasra
Over the last couple of days I have been digging into the ZoomInfo API (using C# - ASP.Net) to first of all better understand the API and secondly to leverage the data provided in order to use it for things like company profiling, competitors, and key contacts at a given company.
The ZoomInfo API gives you the ability to:
• Search for any person in the ZoomInfo database by name.
• Search for any company in the ZoomInfo database by name, domain, industry, keyword, geography, or company size.
• Get detailed information such as description, industries, address, stock ticker, key people, mergers and acquisitions, and more on any company in the ZoomInfo database.
• Get a list of competitors for any company in the ZoomInfo database.
Below is a sample URL to make an XML request for the ZoomInfo data:
http://api.zoominfo.com/PartnerAPI/XmlOutput.aspx?
query_type=people_search_query
&pc=&firstName=Brian&lastName=Balfour&key=
The "key" has to be generated by concatenating the following parameters:
1. First 2 letters of every search term in sequential order (*** Note for the Company Competitors Query, supply the whole CompanyID)
2. Your Shared Secret
3. Today's day (not padded with zero)
4. Today's month (not padded with zero)
5. Today's year (4 digit)
Below is a method you can use to generate the MD5 code:
Continue reading this article.
About the Author: Manoj Jasra has been in the search marketing industry since 2002 with Enquiro Search Solutions. His role as the Director of Technology at Enquiro involves him developing strategic relationships with technology vendors, overseeing web analytics and designing cutting edge solutions for clients. Manoj's background in software development and experience in search marketing/web analytics gives him the ability to provide strategic consultation throughout the entire online marketing process.
Manoj's blog, Web Analytics World focuses on insight in Search Marketing, Blogging, Web Analytics and Technology; it is also one of the top read web analytics blogs. You can frequently find Manoj's writing at popular marketing publications.
|
|