Sample code for 30+ languages & platforms
PowerBuilder

Activix CRM Upload a Recording

See more Activix CRM Examples

Upload a recording for an existing communication.

Chilkat PowerBuilder Downloads

PowerBuilder
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