SQL Server
SQL Server
CallRail API - Listing All Calls
See more CallRail Examples
Returns a paginated list of all calls in the target account.Chilkat SQL Server Downloads
-- 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)
DECLARE @success int
SELECT @success = 0
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
-- 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
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
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