Sample code for 30+ languages & platforms
PowerBuilder

CallRail API - Create an Outbound Phone Call

See more CallRail Examples

Initiates an outbound call from the target account.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Answered
string ls_Business_phone_number
string ls_Customer_city
string ls_Customer_country
string ls_Customer_name
string ls_Customer_phone_number
string ls_Customer_state
string ls_Direction
string ls_Duration
string ls_Id
string ls_Recording
string ls_Recording_duration
string ls_Start_time
string ls_Tracking_phone_number
integer li_Voicemail

li_Success = 0

// This example assumes 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

// Implements the following CURL command:

// curl -H "Authorization: Token token={api_token}" \
//      -X POST \
//      -H "Content-Type: application/json" \
//      -d '{
//           "caller_id": "+17703334455",
//           "business_phone_number": "+14045556666",
//           "customer_phone_number": "+14044442233",
//           "recording_enabled": true,
//           "outbound_greeting_recording_url": "http://www.test.com/greeting.mp3",
//           "outbound_greeting_text": "These are not the droids you are looking for."
//          }' \
//          "https://api.callrail.com/v3/a/{account_id}/calls.json"

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "caller_id": "+17703334455",
//   "business_phone_number": "+14045556666",
//   "customer_phone_number": "+14044442233",
//   "recording_enabled": true,
//   "outbound_greeting_recording_url": "http://www.test.com/greeting.mp3",
//   "outbound_greeting_text": "These are not the droids you are looking for."
// }

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")

loo_Json.UpdateString("caller_id","+17703334455")
loo_Json.UpdateString("business_phone_number","+14045556666")
loo_Json.UpdateString("customer_phone_number","+14044442233")
loo_Json.UpdateBool("recording_enabled",1)
loo_Json.UpdateString("outbound_greeting_recording_url","http://www.test.com/greeting.mp3")
loo_Json.UpdateString("outbound_greeting_text","These are not the droids you are looking for.")

loo_Http.SetRequestHeader("Authorization","Token token={api_token}")
loo_Http.SetRequestHeader("Content-Type","application/json")

loo_Resp = create oleobject
li_rc = loo_Resp.ConnectToNewObject("Chilkat.HttpResponse")

li_Success = loo_Http.HttpJson("POST","https://api.callrail.com/v3/a/{account_id}/calls.json",loo_Json,"application/json",loo_Resp)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Json
    destroy loo_Resp
    return
end if

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")

loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Resp.Header
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_Json
    destroy loo_Resp
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "answered": null,
//   "business_phone_number": "+19044567899",
//   "customer_city": "Atlanta",
//   "customer_country": "US",
//   "customer_name": null,
//   "customer_phone_number": "+14703444700",
//   "customer_state": "GA",
//   "direction": "outbound",
//   "duration": null,
//   "id": "CAL8154748ae6bd4e278a7cddd38a662f4f",
//   "recording": null,
//   "recording_duration": null,
//   "start_time": "2017-02-22T15:02:24.916-05:00",
//   "tracking_phone_number": "+19044567899",
//   "voicemail": false
// }

// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON

ls_Answered = loo_JResp.StringOf("answered")
ls_Business_phone_number = loo_JResp.StringOf("business_phone_number")
ls_Customer_city = loo_JResp.StringOf("customer_city")
ls_Customer_country = loo_JResp.StringOf("customer_country")
ls_Customer_name = loo_JResp.StringOf("customer_name")
ls_Customer_phone_number = loo_JResp.StringOf("customer_phone_number")
ls_Customer_state = loo_JResp.StringOf("customer_state")
ls_Direction = loo_JResp.StringOf("direction")
ls_Duration = loo_JResp.StringOf("duration")
ls_Id = loo_JResp.StringOf("id")
ls_Recording = loo_JResp.StringOf("recording")
ls_Recording_duration = loo_JResp.StringOf("recording_duration")
ls_Start_time = loo_JResp.StringOf("start_time")
ls_Tracking_phone_number = loo_JResp.StringOf("tracking_phone_number")
li_Voicemail = loo_JResp.BoolOf("voicemail")


destroy loo_Http
destroy loo_Json
destroy loo_Resp
destroy loo_SbResponseBody
destroy loo_JResp