Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(SQL Server) CallRail API - Listing All CallsReturns a paginated list of all calls in the target account. For more information, see https://apidocs.callrail.com/#listing-all-calls
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) -- This example assumes the Chilkat API to have been previously unlocked. -- See Global Unlock Sample for sample code. DECLARE @http int -- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END DECLARE @success int -- Implements the following CURL command: -- curl -H "Authorization: Token token={api_token}" \ -- -X GET \ -- "https://api.callrail.com/v3/a/{account_id}/calls.json" -- Use the following online tool to generate HTTP code from a CURL command -- Convert a cURL Command to HTTP Source Code EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Authorization', 'Token token={api_token}' DECLARE @sbResponseBody int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT EXEC sp_OAMethod @http, 'QuickGetSb', @success OUT, 'https://api.callrail.com/v3/a/{account_id}/calls.json', @sbResponseBody IF @success = 0 BEGIN EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @sbResponseBody RETURN END DECLARE @jResp int -- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody EXEC sp_OASetProperty @jResp, 'EmitCompact', 0 PRINT 'Response Body:' EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT PRINT @sTmp0 DECLARE @respStatusCode int EXEC sp_OAGetProperty @http, 'LastStatus', @respStatusCode OUT PRINT 'Response Status Code = ' + @respStatusCode IF @respStatusCode >= 400 BEGIN PRINT 'Response Header:' EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT PRINT @sTmp0 PRINT 'Failed.' EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @sbResponseBody EXEC @hr = sp_OADestroy @jResp RETURN END -- Sample JSON response: -- (Sample code for parsing the JSON response is shown below) -- { -- "page": 1, -- "per_page": 100, -- "total_pages": 1, -- "total_records": 9, -- "calls": [ -- { -- "answered": false, -- "business_phone_number": null, -- "customer_city": "Denver", -- "customer_country": "US", -- "customer_name": "RUEGSEGGER SIMO", -- "customer_phone_number": "+13036231131", -- "customer_state": "CO", -- "direction": "inbound", -- "duration": 4, -- "id": "CAL8154748ae6bd4e278a7cddd38a662f4f", -- "recording": "https://api.callrail.com/v3/a/227799611/calls/111222333/recording.json", -- "recording_duration": "27", -- "recording_player": "https://app.callrail.com/calls/111222333/recording?access_key=3b91eb7f7cc08a4d01ed", -- "start_time": "2017-01-24T11:27:48.119-05:00", -- "tracking_phone_number": "+13038163491", -- "voicemail": false, -- "agent_email": "gil@televised.com" -- }, -- { -- "answered": false, -- "business_phone_number": null, -- "customer_city": "Blue Ridge", -- "customer_country": "US", -- "customer_name": "BLUE RIDGE, GA", -- "customer_phone_number": "+17064558047", -- "customer_state": "GA", -- "direction": "inbound", -- "duration": 16, -- "id": "CAL8154748ae6bd4e278a7cddd38a662f4f", -- "recording": null, -- "recording_duration": null, -- "recording_player": null, -- "start_time": "2017-01-24T19:50:03.456-05:00", -- "tracking_phone_number": "+17708243899", -- "voicemail": false, -- "agent_email": "elbert@bpp.com" -- } -- ] -- } -- Sample code for parsing the JSON response... -- Use the following online tool to generate parsing code from sample JSON: -- Generate Parsing Code from JSON DECLARE @answered int DECLARE @business_phone_number nvarchar(4000) DECLARE @customer_city nvarchar(4000) DECLARE @customer_country nvarchar(4000) DECLARE @customer_name nvarchar(4000) DECLARE @customer_phone_number nvarchar(4000) DECLARE @customer_state nvarchar(4000) DECLARE @direction nvarchar(4000) DECLARE @duration int DECLARE @id nvarchar(4000) DECLARE @recording nvarchar(4000) DECLARE @recording_duration nvarchar(4000) DECLARE @recording_player nvarchar(4000) DECLARE @start_time nvarchar(4000) DECLARE @tracking_phone_number nvarchar(4000) DECLARE @voicemail int DECLARE @agent_email nvarchar(4000) DECLARE @page int EXEC sp_OAMethod @jResp, 'IntOf', @page OUT, 'page' DECLARE @per_page int EXEC sp_OAMethod @jResp, 'IntOf', @per_page OUT, 'per_page' DECLARE @total_pages int EXEC sp_OAMethod @jResp, 'IntOf', @total_pages OUT, 'total_pages' DECLARE @total_records int EXEC sp_OAMethod @jResp, 'IntOf', @total_records OUT, 'total_records' DECLARE @i int SELECT @i = 0 DECLARE @count_i int EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'calls' WHILE @i < @count_i BEGIN EXEC sp_OASetProperty @jResp, 'I', @i EXEC sp_OAMethod @jResp, 'BoolOf', @answered OUT, 'calls[i].answered' EXEC sp_OAMethod @jResp, 'StringOf', @business_phone_number OUT, 'calls[i].business_phone_number' EXEC sp_OAMethod @jResp, 'StringOf', @customer_city OUT, 'calls[i].customer_city' EXEC sp_OAMethod @jResp, 'StringOf', @customer_country OUT, 'calls[i].customer_country' EXEC sp_OAMethod @jResp, 'StringOf', @customer_name OUT, 'calls[i].customer_name' EXEC sp_OAMethod @jResp, 'StringOf', @customer_phone_number OUT, 'calls[i].customer_phone_number' EXEC sp_OAMethod @jResp, 'StringOf', @customer_state OUT, 'calls[i].customer_state' EXEC sp_OAMethod @jResp, 'StringOf', @direction OUT, 'calls[i].direction' EXEC sp_OAMethod @jResp, 'IntOf', @duration OUT, 'calls[i].duration' EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'calls[i].id' EXEC sp_OAMethod @jResp, 'StringOf', @recording OUT, 'calls[i].recording' EXEC sp_OAMethod @jResp, 'StringOf', @recording_duration OUT, 'calls[i].recording_duration' EXEC sp_OAMethod @jResp, 'StringOf', @recording_player OUT, 'calls[i].recording_player' EXEC sp_OAMethod @jResp, 'StringOf', @start_time OUT, 'calls[i].start_time' EXEC sp_OAMethod @jResp, 'StringOf', @tracking_phone_number OUT, 'calls[i].tracking_phone_number' EXEC sp_OAMethod @jResp, 'BoolOf', @voicemail OUT, 'calls[i].voicemail' EXEC sp_OAMethod @jResp, 'StringOf', @agent_email OUT, 'calls[i].agent_email' SELECT @i = @i + 1 END EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @sbResponseBody EXEC @hr = sp_OADestroy @jResp END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.