Lead - Create
Create a new lead in Hunter.io using SQL Server
- See SQLHTTP easy setup for Hunter.io
- See API Call documentation for parameter values and other information
- Create the stored procedure documented below
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
CREATE PROCEDURE usp_Hunter_Lead_Create( @Profile nvarchar(100), @Body varchar(MAX), @Response nvarchar(MAX) OUTPUT, @StatusCode int OUTPUT, @StatusDescription nvarchar(MAX) OUTPUT) AS SET NOCOUNT ON DECLARE @URL nvarchar(MAX) DECLARE @QueryString nvarchar(MAX) DECLARE @HTTPSessionID uniqueidentifier SET @URL = 'https://api.hunter.io/v2/leads' EXEC SQLHTTP.net.QueryStringBuilder @QueryString OUTPUT, @Profile, 'api_key', '#APIKey' SET @URL = @URL + @QueryString EXEC SQLHTTP.net.HTTPSession @HTTPSessionID OUTPUT EXEC SQLHTTP.net.HTTPRequest @HttpSessionID, @URL = @URL, @Method = 'POST', @Body = @Body, @ContentType = 'application/json', @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT, @Response = @Response OUTPUT GO |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
DECLARE @Response nvarchar(MAX) DECLARE @StatusCode int DECLARE @StatusDescription nvarchar(MAX) DECLARE @Body varchar(MAX) SET @Body = '{ "email": "bill.gates@microsoft.com", "first_name": "Bill", "last_name": "Gates", "position": "Co-founder", "company": "Microsoft", "company_industry": "Internet and Telecom", "company_size": "201-500 employees", "confidence_score": 98, "website": "microsoft.com", "phone_number": "720-421-8761", "twitter": "bgates" }' EXEC usp_Hunter_Lead_Create @Profile = 'My Hunter', @Body = @Body, @Response= @Response OUTPUT, @StatusCode = @StatusCode OUTPUT, @StatusDescription = @StatusDescription OUTPUT IF @StatusCode >= 400 EXEC SQLHTTP.net.RaiseHttpError @StatusCode, @StatusDescription, @Response ELSE BEGIN DECLARE @X xml SET @X = SQLHTTP.net.Json_To_Xml(@Response, '0') --The XPath syntax below was easily generated by executing the following commands: --EXEC SQLHTTP.net.XQueryHelper @X --and then executing: --EXEC SQLHTTP.net.XQueryHelper @X, 'JsonObject/data' -- SELECT T.C.value(N'@id', N'nvarchar(MAX)') AS [id] ,T.C.value(N'@first_name', N'nvarchar(MAX)') AS [first_name] ,T.C.value(N'@last_name', N'nvarchar(MAX)') AS [last_name] ,T.C.value(N'@email', N'nvarchar(MAX)') AS [email] ,T.C.value(N'@confidence_score', N'nvarchar(MAX)') AS [confidence_score] ,T.C.value(N'@position', N'nvarchar(MAX)') AS [position] FROM @X.nodes(N'/JsonObject/data') T(C) END |
1 2 3 4 5 |
id first_name last_name email confidence_score position ---------- ----------- ---------- -------------------------- ------------------ ------------- 32142619 Bill Gates bill.gates@microsoft.com 98 Co-founder |
- Account Information – Fetch
- Deleted Records – Fetch
- Domain – Search
- Email – Fetch
- Email Count – Fetch
- Email Verification – Fetch
- Lead – Create
- Lead – Delete
- Lead – Update
- Leads – Fetch
- Leads List – Create
- Leads List – Delete
- Leads List – Fetch
- Leads List – Update
- Leads Lists – Fetch
- Multiple Reocords – Create
- Multiple Requests – Create
- Nested Records – Create
- Recently Viewed Records – Fetch
- Records as Recently Viewed – Query
- Relevant Items – Fetch
- Search Scope and Order – Fetch
- String – SOSL Search
- Updated Records – Fetch
IMPORTANT DISCLAIMER
CODE/SQL ON THESE PAGES ARE PROVIDED AS-IS AND ARE AVAILABLE FOR ILLUSTRATIVE PURPOSES ONLY.
USERS ARE REQUIRED TO ABIDE BY THE TERMS AND CONDITIONS FOR USING REFERENCED THIRD PARTY WEBSITES AND/OR APIs FROM THEIR RESPECTIVE WEBSITES. WE DO NOT CONDONE ANY VIOLATION OF THIRD PARTY WEBSITES AND/OR APIs TERMS AND CONDITIONS USING OUR SOFTWARE.
USERS SHALL BE SOLELY RESPONSIBLE AND BE SOLELY LIABLE FOR VIOLATION OF ANY RULES SPECIFIED BY THIRD PARTIES FOR USING THEIR WEBSITES AND/OR APIs, OR INFRINGEMENT OF RIGHTS OF SUCH THIRD PARTIES.