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
(DataFlex) CallRail API - Update a CallUpdates a call object in the target account. You can use the API to add a Tag or a Note to a call, or to set the call’s lead status. For more information, see https://apidocs.callrail.com/#updating-a-call
Use ChilkatAx-win32.pkg Procedure Test Handle hoHttp Boolean iSuccess Handle hoJson Variant vSbRequestBody Handle hoSbRequestBody Variant vResp Handle hoResp Variant vSbResponseBody Handle hoSbResponseBody Handle hoJResp Integer iRespStatusCode Boolean iAnswered String sBusiness_phone_number String sCustomer_city String sCustomer_country String sCustomer_name String sCustomer_phone_number String sCustomer_state String sDirection Integer iDuration String sId String sRecording String sRecording_duration String sStart_time String sTracking_phone_number Boolean iVoicemail String sTemp1 Boolean bTemp1 // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Get Create (RefClass(cComChilkatHttp)) To hoHttp If (Not(IsComObjectCreated(hoHttp))) Begin Send CreateComObject of hoHttp End // Implements the following CURL command: // curl -H "Authorization: Token token={api_token}" \ // -X PUT \ // -H "Content-Type: application/json" \ // -v \ // -d '{ // "note": "Call customer back tomorrow", // "tags": ["New Client"], // "lead_status": "good_lead", // "value": "$1.00", // "append_tags": true, // }' \ // "https://api.callrail.com/v3/a/{account_id}/calls/{call_id}.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. // { // "note": "Call customer back tomorrow", // "tags": [ // "New Client" // ], // "lead_status": "good_lead", // "value": "$1.00", // "append_tags": true // } Get Create (RefClass(cComChilkatJsonObject)) To hoJson If (Not(IsComObjectCreated(hoJson))) Begin Send CreateComObject of hoJson End Get ComUpdateString Of hoJson "note" "Call customer back tomorrow" To iSuccess Get ComUpdateString Of hoJson "tags[0]" "New Client" To iSuccess Get ComUpdateString Of hoJson "lead_status" "good_lead" To iSuccess Get ComUpdateString Of hoJson "value" "$1.00" To iSuccess Get ComUpdateBool Of hoJson "append_tags" True To iSuccess Send ComSetRequestHeader To hoHttp "Authorization" "Token token={api_token}" Send ComSetRequestHeader To hoHttp "Content-Type" "application/json" Get Create (RefClass(cComChilkatStringBuilder)) To hoSbRequestBody If (Not(IsComObjectCreated(hoSbRequestBody))) Begin Send CreateComObject of hoSbRequestBody End Get pvComObject of hoSbRequestBody to vSbRequestBody Get ComEmitSb Of hoJson vSbRequestBody To iSuccess Get pvComObject of hoSbRequestBody to vSbRequestBody Get ComPTextSb Of hoHttp "PUT" "https://api.callrail.com/v3/a/{account_id}/calls/{call_id}.json" vSbRequestBody "utf-8" "application/json" False False To vResp If (IsComObject(vResp)) Begin Get Create (RefClass(cComChilkatHttpResponse)) To hoResp Set pvComObject Of hoResp To vResp End Get ComLastMethodSuccess Of hoHttp To bTemp1 If (bTemp1 = False) Begin Get ComLastErrorText Of hoHttp To sTemp1 Showln sTemp1 Procedure_Return End Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody If (Not(IsComObjectCreated(hoSbResponseBody))) Begin Send CreateComObject of hoSbResponseBody End Get pvComObject of hoSbResponseBody to vSbResponseBody Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess Get Create (RefClass(cComChilkatJsonObject)) To hoJResp If (Not(IsComObjectCreated(hoJResp))) Begin Send CreateComObject of hoJResp End Get pvComObject of hoSbResponseBody to vSbResponseBody Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess Set ComEmitCompact Of hoJResp To False Showln "Response Body:" Get ComEmit Of hoJResp To sTemp1 Showln sTemp1 Get ComStatusCode Of hoResp To iRespStatusCode Showln "Response Status Code = " iRespStatusCode If (iRespStatusCode >= 400) Begin Showln "Response Header:" Get ComHeader Of hoResp To sTemp1 Showln sTemp1 Showln "Failed." Send Destroy of hoResp Procedure_Return End Send Destroy of hoResp // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "answered": false, // "business_phone_number": null, // "customer_city": "Denver", // "customer_country": "US", // "customer_name": "RUEGSEGGER SIMO", // "customer_phone_number": "+13036231131", // "customer_state": "CO", // "direction": "inbound", // "duration": 4, // "id": "CAL8154748ae6bd4e278a7cddd38a662f4f", // "recording": "https://api.callrail.com/v3/a/227799611/calls/213472384/recording.json", // "recording_duration": "27", // "start_time": "2017-01-24T11:27:48.119-05:00", // "tracking_phone_number": "+13038163491", // "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 Get ComBoolOf Of hoJResp "answered" To iAnswered Get ComStringOf Of hoJResp "business_phone_number" To sBusiness_phone_number Get ComStringOf Of hoJResp "customer_city" To sCustomer_city Get ComStringOf Of hoJResp "customer_country" To sCustomer_country Get ComStringOf Of hoJResp "customer_name" To sCustomer_name Get ComStringOf Of hoJResp "customer_phone_number" To sCustomer_phone_number Get ComStringOf Of hoJResp "customer_state" To sCustomer_state Get ComStringOf Of hoJResp "direction" To sDirection Get ComIntOf Of hoJResp "duration" To iDuration Get ComStringOf Of hoJResp "id" To sId Get ComStringOf Of hoJResp "recording" To sRecording Get ComStringOf Of hoJResp "recording_duration" To sRecording_duration Get ComStringOf Of hoJResp "start_time" To sStart_time Get ComStringOf Of hoJResp "tracking_phone_number" To sTracking_phone_number Get ComBoolOf Of hoJResp "voicemail" To iVoicemail End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.