Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Activix CRM Update a PhoneUpdates a phone and returns the updated phone. For more information, see https://docs.crm.activix.ca/api/resources/phone
#include <CkHttp.h> #include <CkJsonObject.h> #include <CkHttpResponse.h> void ChilkatSample(void) { CkString strOut; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkHttp http; http.put_AuthToken("ACCESS_TOKEN"); http.put_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 CkJsonObject jsonRequestBody; jsonRequestBody.UpdateString("number","+15141234459"); jsonRequestBody.UpdateString("type","home"); jsonRequestBody.UpdateBool("mobile",true); const char *url = "https://crm.activix.ca/api/v2/lead-phones/PHONE_ID"; CkHttpResponse *resp = http.PText("PUT",url,jsonRequestBody.emit(),"utf-8","application/json",false,false); if (http.get_LastMethodSuccess() != true) { strOut.append(http.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } strOut.append("Response Status Code: "); strOut.appendInt(resp->get_StatusCode()); strOut.append("\r\n"); CkJsonObject jsonResponse; jsonResponse.Load(resp->bodyStr()); jsonResponse.put_EmitCompact(false); strOut.append(jsonResponse.emit()); strOut.append("\r\n"); if (resp->get_StatusCode() >= 300) { strOut.append("Failed."); strOut.append("\r\n"); delete resp; SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } delete resp; // 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", // ... // } // } int dataId; const char *dataCreated_at = 0; const char *dataUpdated_at = 0; int dataLead_id; const char *dataExtension = 0; const char *dataNumber = 0; const char *dataType = 0; bool dataValid; bool dataValidated; bool dataMobile; dataId = jsonResponse.IntOf("data.id"); dataCreated_at = jsonResponse.stringOf("data.created_at"); dataUpdated_at = jsonResponse.stringOf("data.updated_at"); dataLead_id = jsonResponse.IntOf("data.lead_id"); dataExtension = jsonResponse.stringOf("data.extension"); dataNumber = jsonResponse.stringOf("data.number"); dataType = jsonResponse.stringOf("data.type"); dataValid = jsonResponse.BoolOf("data.valid"); dataValidated = jsonResponse.BoolOf("data.validated"); dataMobile = jsonResponse.BoolOf("data.mobile"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.