DataFlex
DataFlex
CallRail API - Retrieving a Single Call
See more CallRail Examples
Returns a single call object associated with the target account.Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoHttp
Variant vSbResponseBody
Handle hoSbResponseBody
Handle hoJResp
Integer iRespStatusCode
String sKeyword
Integer j
Integer iCount_j
String sSpeaker
String sStart
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 i
Integer iCount_i
String sTemp1
Move False To iSuccess
// 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/{call_id}.json?fields=keywords_spotted"
// 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/{call_id}.json?fields=keywords_spotted" 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)
// {
// "answered": false,
// "business_phone_number": null,
// "customer_city": "New York City",
// "customer_country": "US",
// "customer_name": "Jimmy Pesto, Sr.",
// "customer_phone_number": "+13036231131",
// "customer_state": "NY",
// "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",
// "keywords_spotted": [
// {
// "keyword": "test phrase one",
// "locations": [
// {
// "speaker": "caller",
// "start": 7.71
// },
// {
// "speaker": "agent",
// "start": 13.38
// },
// {
// "speaker": "caller",
// "start": 17.96
// }
// ]
// },
// {
// "keyword": "test phrase two",
// "locations": [
// {
// "speaker": "caller",
// "start": 8.44
// }
// ]
// }
// ]
// }
// 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 ComBoolOf Of hoJResp "answered" To iAnswered
Get ComStringOf Of hoJResp "business_phone_number" To sBusiness_phone_number
Get ComStringOf Of hoJResp "customer_city" To sCustomer_city
Get ComStringOf Of hoJResp "customer_country" To sCustomer_country
Get ComStringOf Of hoJResp "customer_name" To sCustomer_name
Get ComStringOf Of hoJResp "customer_phone_number" To sCustomer_phone_number
Get ComStringOf Of hoJResp "customer_state" To sCustomer_state
Get ComStringOf Of hoJResp "direction" To sDirection
Get ComIntOf Of hoJResp "duration" To iDuration
Get ComStringOf Of hoJResp "id" To sId
Get ComStringOf Of hoJResp "recording" To sRecording
Get ComStringOf Of hoJResp "recording_duration" To sRecording_duration
Get ComStringOf Of hoJResp "recording_player" To sRecording_player
Get ComStringOf Of hoJResp "start_time" To sStart_time
Get ComStringOf Of hoJResp "tracking_phone_number" To sTracking_phone_number
Get ComBoolOf Of hoJResp "voicemail" To iVoicemail
Get ComStringOf Of hoJResp "agent_email" To sAgent_email
Move 0 To i
Get ComSizeOfArray Of hoJResp "keywords_spotted" To iCount_i
While (i < iCount_i)
Set ComI Of hoJResp To i
Get ComStringOf Of hoJResp "keywords_spotted[i].keyword" To sKeyword
Move 0 To j
Get ComSizeOfArray Of hoJResp "keywords_spotted[i].locations" To iCount_j
While (j < iCount_j)
Set ComJ Of hoJResp To j
Get ComStringOf Of hoJResp "keywords_spotted[i].locations[j].speaker" To sSpeaker
Get ComStringOf Of hoJResp "keywords_spotted[i].locations[j].start" To sStart
Move (j + 1) To j
Loop
Move (i + 1) To i
Loop
End_Procedure