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
(DataFlex) 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
Use ChilkatAx-win32.pkg Procedure Test Handle hoHttp Boolean iSuccess Variant vSbResponseBody Handle hoSbResponseBody Handle hoJResp Integer iRespStatusCode Boolean iAnswered String sBusiness_phone_number String sCustomer_city String sCustomer_country String sCustomer_name String sCustomer_phone_number String sCustomer_state String sDirection Integer iDuration String sId String sRecording String sRecording_duration String sRecording_player String sStart_time String sTracking_phone_number Boolean iVoicemail String sAgent_email Integer iPage Integer iPer_page Integer iTotal_pages Integer iTotal_records Integer i Integer iCount_i String sTemp1 // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Get Create (RefClass(cComChilkatHttp)) To hoHttp If (Not(IsComObjectCreated(hoHttp))) Begin Send CreateComObject of hoHttp 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 Send ComSetRequestHeader To hoHttp "Authorization" "Token token={api_token}" Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody If (Not(IsComObjectCreated(hoSbResponseBody))) Begin Send CreateComObject of hoSbResponseBody End Get pvComObject of hoSbResponseBody to vSbResponseBody Get ComQuickGetSb Of hoHttp "https://api.callrail.com/v3/a/{account_id}/calls.json" vSbResponseBody To iSuccess If (iSuccess = False) Begin Get ComLastErrorText Of hoHttp To sTemp1 Showln sTemp1 Procedure_Return End Get Create (RefClass(cComChilkatJsonObject)) To hoJResp If (Not(IsComObjectCreated(hoJResp))) Begin Send CreateComObject of hoJResp End Get pvComObject of hoSbResponseBody to vSbResponseBody Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess Set ComEmitCompact Of hoJResp To False Showln "Response Body:" Get ComEmit Of hoJResp To sTemp1 Showln sTemp1 Get ComLastStatus Of hoHttp To iRespStatusCode Showln "Response Status Code = " iRespStatusCode If (iRespStatusCode >= 400) Begin Showln "Response Header:" Get ComLastHeader Of hoHttp To sTemp1 Showln sTemp1 Showln "Failed." Procedure_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 Get ComIntOf Of hoJResp "page" To iPage Get ComIntOf Of hoJResp "per_page" To iPer_page Get ComIntOf Of hoJResp "total_pages" To iTotal_pages Get ComIntOf Of hoJResp "total_records" To iTotal_records Move 0 To i Get ComSizeOfArray Of hoJResp "calls" To iCount_i While (i < iCount_i) Set ComI Of hoJResp To i Get ComBoolOf Of hoJResp "calls[i].answered" To iAnswered Get ComStringOf Of hoJResp "calls[i].business_phone_number" To sBusiness_phone_number Get ComStringOf Of hoJResp "calls[i].customer_city" To sCustomer_city Get ComStringOf Of hoJResp "calls[i].customer_country" To sCustomer_country Get ComStringOf Of hoJResp "calls[i].customer_name" To sCustomer_name Get ComStringOf Of hoJResp "calls[i].customer_phone_number" To sCustomer_phone_number Get ComStringOf Of hoJResp "calls[i].customer_state" To sCustomer_state Get ComStringOf Of hoJResp "calls[i].direction" To sDirection Get ComIntOf Of hoJResp "calls[i].duration" To iDuration Get ComStringOf Of hoJResp "calls[i].id" To sId Get ComStringOf Of hoJResp "calls[i].recording" To sRecording Get ComStringOf Of hoJResp "calls[i].recording_duration" To sRecording_duration Get ComStringOf Of hoJResp "calls[i].recording_player" To sRecording_player Get ComStringOf Of hoJResp "calls[i].start_time" To sStart_time Get ComStringOf Of hoJResp "calls[i].tracking_phone_number" To sTracking_phone_number Get ComBoolOf Of hoJResp "calls[i].voicemail" To iVoicemail Get ComStringOf Of hoJResp "calls[i].agent_email" To sAgent_email Move (i + 1) To i Loop End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.