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
(AutoIt) Activix CRM Update a PhoneUpdates a phone and returns the updated phone. For more information, see https://docs.crm.activix.ca/api/resources/phone
; This example requires the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. $oHttp = ObjCreate("Chilkat.Http") $oHttp.AuthToken = "ACCESS_TOKEN" $oHttp.Accept = "application/json" ; The following JSON is sent in the request body: ; { ; "number": "+15141234459", ; "type": "home", ; "mobile": true ; } ; Use this online tool to generate the code from sample JSON: ; Generate Code to Create JSON $oJsonRequestBody = ObjCreate("Chilkat.JsonObject") $oJsonRequestBody.UpdateString("number","+15141234459") $oJsonRequestBody.UpdateString("type","home") $oJsonRequestBody.UpdateBool("mobile",True) Local $sUrl = "https://crm.activix.ca/api/v2/lead-phones/PHONE_ID" Local $oResp = $oHttp.PText("PUT",$sUrl,$oJsonRequestBody.Emit(),"utf-8","application/json",False,False) If ($oHttp.LastMethodSuccess <> True) Then ConsoleWrite($oHttp.LastErrorText & @CRLF) Exit EndIf ConsoleWrite("Response Status Code: " & $oResp.StatusCode & @CRLF) $oJsonResponse = ObjCreate("Chilkat.JsonObject") $oJsonResponse.Load($oResp.BodyStr) $oJsonResponse.EmitCompact = False ConsoleWrite($oJsonResponse.Emit() & @CRLF) If ($oResp.StatusCode >= 300) Then ConsoleWrite("Failed." & @CRLF) Exit EndIf ; 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": 34566, ; "created_at": "2018-04-09T18:05:00+00:00", ; "updated_at": "2018-04-09T18:07:00+00:00", ; "lead_id": 3466512, ; "number": "+15141234455", ; ... ; } ; } Local $iDataId Local $sDataCreated_at Local $sDataUpdated_at Local $iDataLead_id Local $sDataExtension Local $sDataNumber Local $sDataType Local $bDataValid Local $bDataValidated Local $bDataMobile $iDataId = $oJsonResponse.IntOf("data.id") $sDataCreated_at = $oJsonResponse.StringOf("data.created_at") $sDataUpdated_at = $oJsonResponse.StringOf("data.updated_at") $iDataLead_id = $oJsonResponse.IntOf("data.lead_id") $sDataExtension = $oJsonResponse.StringOf("data.extension") $sDataNumber = $oJsonResponse.StringOf("data.number") $sDataType = $oJsonResponse.StringOf("data.type") $bDataValid = $oJsonResponse.BoolOf("data.valid") $bDataValidated = $oJsonResponse.BoolOf("data.validated") $bDataMobile = $oJsonResponse.BoolOf("data.mobile") |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.