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
(Delphi DLL) Activix CRM Create a CommunicationCreate a communication. Returns the created communication. For more information, see https://docs.crm.activix.ca/api/resources/communication
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Http, HttpResponse, JsonObject; ... procedure TForm1.Button1Click(Sender: TObject); var http: HCkHttp; jsonRequestBody: HCkJsonObject; url: PWideChar; resp: HCkHttpResponse; jsonResponse: HCkJsonObject; dataId: Integer; dataCreated_at: PWideChar; dataUpdated_at: PWideChar; dataLead_id: Integer; dataUser_id: Integer; dataMethod: PWideChar; dataType: PWideChar; dataEmail_subject: PWideChar; dataEmail_body: PWideChar; dataEmail_client: PWideChar; dataEmail_user: PWideChar; dataCall_duration: PWideChar; dataCall_phone: PWideChar; dataCall_status: PWideChar; begin // 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: // { // "lead_id": "LEAD_ID", // "method": "phone", // "type": "outgoing", // "call_status": "calling" // } // Use this online tool to generate the code from sample JSON: // Generate Code to Create JSON jsonRequestBody := CkJsonObject_Create(); CkJsonObject_UpdateString(jsonRequestBody,'lead_id','LEAD_ID'); CkJsonObject_UpdateString(jsonRequestBody,'method','phone'); CkJsonObject_UpdateString(jsonRequestBody,'type','outgoing'); CkJsonObject_UpdateString(jsonRequestBody,'call_status','calling'); url := 'https://crm.activix.ca/api/v2/communications'; resp := CkHttp_PText(http,'POST',url,CkJsonObject__emit(jsonRequestBody),'utf-8','application/json',False,False); if (CkHttp_getLastMethodSuccess(http) <> True) then begin Memo1.Lines.Add(CkHttp__lastErrorText(http)); Exit; end; Memo1.Lines.Add('Response Status Code: ' + IntToStr(CkHttpResponse_getStatusCode(resp))); jsonResponse := CkJsonObject_Create(); CkJsonObject_Load(jsonResponse,CkHttpResponse__bodyStr(resp)); CkJsonObject_putEmitCompact(jsonResponse,False); Memo1.Lines.Add(CkJsonObject__emit(jsonResponse)); if (CkHttpResponse_getStatusCode(resp) >= 300) then begin Memo1.Lines.Add('Failed.'); CkHttpResponse_Dispose(resp); Exit; end; 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": 5411998, // "created_at": "2019-06-10T13:01:40+00:00", // "updated_at": "2019-06-10T13:01:40+00:00", // "lead_id": 7135833, // "user_id": 13705, // "method": "phone", // "type": "outgoing", // "email_subject": null, // "email_body": null, // "email_client": null, // "email_user": null, // "call_duration": null, // "call_phone": null, // "call_status": "calling" // } // } // 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'); dataUser_id := CkJsonObject_IntOf(jsonResponse,'data.user_id'); dataMethod := CkJsonObject__stringOf(jsonResponse,'data.method'); dataType := CkJsonObject__stringOf(jsonResponse,'data.type'); dataEmail_subject := CkJsonObject__stringOf(jsonResponse,'data.email_subject'); dataEmail_body := CkJsonObject__stringOf(jsonResponse,'data.email_body'); dataEmail_client := CkJsonObject__stringOf(jsonResponse,'data.email_client'); dataEmail_user := CkJsonObject__stringOf(jsonResponse,'data.email_user'); dataCall_duration := CkJsonObject__stringOf(jsonResponse,'data.call_duration'); dataCall_phone := CkJsonObject__stringOf(jsonResponse,'data.call_phone'); dataCall_status := CkJsonObject__stringOf(jsonResponse,'data.call_status'); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonRequestBody); CkJsonObject_Dispose(jsonResponse); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.