![]() |
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
(PowerBuilder) Activix CRM Upload a RecordingUpload a recording for an existing communication. Note: This example requires Chilkat v11.0.0 or greater. For more information, see https://docs.crm.activix.ca/api/resources/communication
integer li_rc integer li_Success oleobject loo_Req string ls_PathToFileOnDisk oleobject loo_Http oleobject loo_Resp oleobject loo_JsonResponse li_Success = 0 // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Req = create oleobject 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 = 0 then Write-Debug loo_Req.LastErrorText destroy loo_Req return end if loo_Http = create oleobject li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") loo_Http.AuthToken = "ACCESS_TOKEN" loo_Resp = create oleobject li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse") li_Success = loo_Http.HttpSReq("crm.activix.ca",443,1,loo_Req,loo_Resp) if li_Success = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Req destroy loo_Http destroy loo_Resp return end if Write-Debug "Response Status Code: " + string(loo_Resp.StatusCode) loo_JsonResponse = create oleobject 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_Req destroy loo_Http destroy loo_Resp destroy loo_JsonResponse return end if // Sample output... // { // "message": "Recording uploaded successfully." // } // destroy loo_Req destroy loo_Http destroy loo_Resp destroy loo_JsonResponse |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.