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
(PowerBuilder) Activix CRM Upload a RecordingUpload a recording for an existing communication. For more information, see https://docs.crm.activix.ca/api/resources/communication
integer li_rc oleobject loo_Req string ls_PathToFileOnDisk integer li_Success oleobject loo_Http oleobject loo_Resp oleobject loo_JsonResponse // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Req = create oleobject // Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0 li_rc = loo_Req.ConnectToNewObject("Chilkat.HttpRequest") if li_rc < 0 then destroy loo_Req MessageBox("Error","Connecting to COM object failed") return end if loo_Req.HttpVerb = "POST" loo_Req.Path = "/api/v2/communications/COMMUNICATION_ID/recording" loo_Req.ContentType = "multipart/form-data" loo_Req.AddHeader("Accept","application/json") ls_PathToFileOnDisk = "qa_data/CantinaBand3.wav" li_Success = loo_Req.AddFileForUpload("recording",ls_PathToFileOnDisk) if li_Success <> 1 then Write-Debug loo_Req.LastErrorText destroy loo_Req return end if loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") loo_Http.AuthToken = "ACCESS_TOKEN" loo_Resp = loo_Http.SynchronousRequest("crm.activix.ca",443,1,loo_Req) if loo_Http.LastMethodSuccess <> 1 then Write-Debug loo_Http.LastErrorText destroy loo_Req destroy loo_Http return end if Write-Debug "Response Status Code: " + string(loo_Resp.StatusCode) loo_JsonResponse = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_JsonResponse.ConnectToNewObject("Chilkat.JsonObject") loo_JsonResponse.Load(loo_Resp.BodyStr) loo_JsonResponse.EmitCompact = 0 Write-Debug loo_JsonResponse.Emit() if loo_Resp.StatusCode >= 300 then Write-Debug "Failed." destroy loo_Resp destroy loo_Req destroy loo_Http destroy loo_JsonResponse return end if destroy loo_Resp // Sample output... // { // "message": "Recording uploaded successfully." // } // destroy loo_Req destroy loo_Http destroy loo_JsonResponse |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.