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
(C) 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 <C_CkHttp.h> #include <C_CkJsonObject.h> #include <C_CkHttpResponse.h> void ChilkatSample(void) { HCkHttp http; HCkJsonObject jsonRequestBody; const char *url; HCkHttpResponse resp; HCkJsonObject jsonResponse; int dataId; const char *dataCreated_at; const char *dataUpdated_at; int dataLead_id; const char *dataExtension; const char *dataNumber; const char *dataType; BOOL dataValid; BOOL dataValidated; BOOL dataMobile; // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http = CkHttp_Create(); CkHttp_putAuthToken(http,"ACCESS_TOKEN"); CkHttp_putAccept(http,"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 jsonRequestBody = CkJsonObject_Create(); CkJsonObject_UpdateString(jsonRequestBody,"number","+15141234459"); CkJsonObject_UpdateString(jsonRequestBody,"type","home"); CkJsonObject_UpdateBool(jsonRequestBody,"mobile",TRUE); url = "https://crm.activix.ca/api/v2/lead-phones/PHONE_ID"; resp = CkHttp_PText(http,"PUT",url,CkJsonObject_emit(jsonRequestBody),"utf-8","application/json",FALSE,FALSE); if (CkHttp_getLastMethodSuccess(http) != TRUE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonRequestBody); return; } printf("Response Status Code: %d\n",CkHttpResponse_getStatusCode(resp)); jsonResponse = CkJsonObject_Create(); CkJsonObject_Load(jsonResponse,CkHttpResponse_bodyStr(resp)); CkJsonObject_putEmitCompact(jsonResponse,FALSE); printf("%s\n",CkJsonObject_emit(jsonResponse)); if (CkHttpResponse_getStatusCode(resp) >= 300) { printf("Failed.\n"); CkHttpResponse_Dispose(resp); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonRequestBody); CkJsonObject_Dispose(jsonResponse); return; } CkHttpResponse_Dispose(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", // ... // } // } dataId = CkJsonObject_IntOf(jsonResponse,"data.id"); dataCreated_at = CkJsonObject_stringOf(jsonResponse,"data.created_at"); dataUpdated_at = CkJsonObject_stringOf(jsonResponse,"data.updated_at"); dataLead_id = CkJsonObject_IntOf(jsonResponse,"data.lead_id"); dataExtension = CkJsonObject_stringOf(jsonResponse,"data.extension"); dataNumber = CkJsonObject_stringOf(jsonResponse,"data.number"); dataType = CkJsonObject_stringOf(jsonResponse,"data.type"); dataValid = CkJsonObject_BoolOf(jsonResponse,"data.valid"); dataValidated = CkJsonObject_BoolOf(jsonResponse,"data.validated"); dataMobile = CkJsonObject_BoolOf(jsonResponse,"data.mobile"); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonRequestBody); CkJsonObject_Dispose(jsonResponse); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.