PowerBuilder
PowerBuilder
Activix CRM Create a Communication
See more Activix CRM Examples
Create a communication. Returns the created communication.Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_JsonRequestBody
string ls_Url
oleobject loo_Resp
oleobject loo_JsonResponse
integer li_DataId
string ls_DataCreated_at
string ls_DataUpdated_at
integer li_DataLead_id
integer li_DataUser_id
string ls_DataMethod
string ls_DataType
string ls_DataEmail_subject
string ls_DataEmail_body
string ls_DataEmail_client
string ls_DataEmail_user
string ls_DataCall_duration
string ls_DataCall_phone
string ls_DataCall_status
li_Success = 0
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_Http.AuthToken = "ACCESS_TOKEN"
loo_Http.Accept = "application/json"
// The following JSON is sent in the request body:
// {
// "lead_id": "LEAD_ID",
// "method": "phone",
// "type": "outgoing",
// "call_status": "calling"
// }
// Use this online tool to generate the code from sample JSON:
// Generate Code to Create JSON
loo_JsonRequestBody = create oleobject
li_rc = loo_JsonRequestBody.ConnectToNewObject("Chilkat.JsonObject")
loo_JsonRequestBody.UpdateString("lead_id","LEAD_ID")
loo_JsonRequestBody.UpdateString("method","phone")
loo_JsonRequestBody.UpdateString("type","outgoing")
loo_JsonRequestBody.UpdateString("call_status","calling")
ls_Url = "https://crm.activix.ca/api/v2/communications"
loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")
li_Success = loo_Http.HttpJson("POST",ls_Url,loo_JsonRequestBody,"application/json",loo_Resp)
if li_Success = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_JsonRequestBody
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_Http
destroy loo_JsonRequestBody
destroy loo_Resp
destroy loo_JsonResponse
return
end if
// Sample output...
// (See the parsing code below..)
//
// Use the this online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
// {
// "data": {
// "id": 5411998,
// "created_at": "2019-06-10T13:01:40+00:00",
// "updated_at": "2019-06-10T13:01:40+00:00",
// "lead_id": 7135833,
// "user_id": 13705,
// "method": "phone",
// "type": "outgoing",
// "email_subject": null,
// "email_body": null,
// "email_client": null,
// "email_user": null,
// "call_duration": null,
// "call_phone": null,
// "call_status": "calling"
// }
// }
//
li_DataId = loo_JsonResponse.IntOf("data.id")
ls_DataCreated_at = loo_JsonResponse.StringOf("data.created_at")
ls_DataUpdated_at = loo_JsonResponse.StringOf("data.updated_at")
li_DataLead_id = loo_JsonResponse.IntOf("data.lead_id")
li_DataUser_id = loo_JsonResponse.IntOf("data.user_id")
ls_DataMethod = loo_JsonResponse.StringOf("data.method")
ls_DataType = loo_JsonResponse.StringOf("data.type")
ls_DataEmail_subject = loo_JsonResponse.StringOf("data.email_subject")
ls_DataEmail_body = loo_JsonResponse.StringOf("data.email_body")
ls_DataEmail_client = loo_JsonResponse.StringOf("data.email_client")
ls_DataEmail_user = loo_JsonResponse.StringOf("data.email_user")
ls_DataCall_duration = loo_JsonResponse.StringOf("data.call_duration")
ls_DataCall_phone = loo_JsonResponse.StringOf("data.call_phone")
ls_DataCall_status = loo_JsonResponse.StringOf("data.call_status")
destroy loo_Http
destroy loo_JsonRequestBody
destroy loo_Resp
destroy loo_JsonResponse