![]()  | 
  
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
 
      (AutoIt) CallRail API - Retrieve a Call RecordingReturns a CallRail URL pointing to an MP3 recording of the specified call, and then downloads the MP3 to a local file. For more information, see https://apidocs.callrail.com/#retrieving-a-single-call-recording 
 ; This example assumes the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. $oHttp = ObjCreate("Chilkat.Http") Local $bSuccess ; Implements the following CURL command: ; curl -H "Authorization: Token token=abc1234" \ ; https://api.callrail.com/v3/a/{account_id}/calls/{call_id}/recording.json ; Use the following online tool to generate HTTP code from a CURL command ; Convert a cURL Command to HTTP Source Code $oHttp.SetRequestHeader "Authorization","Token token=abc1234" $oSbResponseBody = ObjCreate("Chilkat.StringBuilder") $bSuccess = $oHttp.QuickGetSb("https://api.callrail.com/v3/a/{account_id}/calls/{call_id}/recording.json",$oSbResponseBody) If ($bSuccess = False) Then ConsoleWrite($oHttp.LastErrorText & @CRLF) Exit EndIf $oJResp = ObjCreate("Chilkat.JsonObject") $oJResp.LoadSb($oSbResponseBody) $oJResp.EmitCompact = False ConsoleWrite("Response Body:" & @CRLF) ConsoleWrite($oJResp.Emit() & @CRLF) Local $iRespStatusCode = $oHttp.LastStatus ConsoleWrite("Response Status Code = " & $iRespStatusCode & @CRLF) If ($iRespStatusCode >= 400) Then ConsoleWrite("Response Header:" & @CRLF) ConsoleWrite($oHttp.LastHeader & @CRLF) ConsoleWrite("Failed." & @CRLF) Exit EndIf ; Sample JSON response: ; { ; "url": "http://app.callrail.com/calls/CAL11df32690b7d46123456789123456789/recording/redirect?access_key=241sa242sadqwerty123" ; } Local $sUrl = $oJResp.StringOf("url") ; Download to a .mp3 file $bSuccess = $oHttp.Download($sUrl,"call_recordings/CAL11df32690b7d46123456789123456789.mp3") If ($bSuccess = False) Then ConsoleWrite($oHttp.LastErrorText & @CRLF) Else ConsoleWrite("success." & @CRLF) EndIf  | 
  ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.