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) Cerved API Entity ContactsThe service returns the list of contacts of a Subject (legal entities) identified by "id_soggetto" For more information, see https://apps-developer.cerved.com/
Use ChilkatAx-win32.pkg Procedure Test Handle hoHttp Boolean iSuccess Variant vSbResponseBody Handle hoSbResponseBody Handle hoJResp Integer iRespStatusCode String sEmail String sCategoria String sFonte String sSede String sNumero String sUso String sUrl String sTipo Integer i Integer iCount_i String sTemp1 // 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 -X GET \ // https://api.cerved.com/cervedApi/v1/entityProfile/contacts?id_soggetto=12345678 \ // -H 'accept: application/json' \ // -H 'apikey: ********************************' // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code Send ComSetRequestHeader To hoHttp "accept" "application/json" Send ComSetRequestHeader To hoHttp "apikey" "********************************" Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody If (Not(IsComObjectCreated(hoSbResponseBody))) Begin Send CreateComObject of hoSbResponseBody End Get pvComObject of hoSbResponseBody to vSbResponseBody Get ComQuickGetSb Of hoHttp "https://api.cerved.com/cervedApi/v1/entityProfile/contacts?id_soggetto=12345678" vSbResponseBody To iSuccess If (iSuccess = False) Begin Get ComLastErrorText Of hoHttp To sTemp1 Showln sTemp1 Procedure_Return End 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 ComLastStatus Of hoHttp To iRespStatusCode Showln "Response Status Code = " iRespStatusCode If (iRespStatusCode >= 400) Begin Showln "Response Header:" Get ComLastHeader Of hoHttp To sTemp1 Showln sTemp1 Showln "Failed." Procedure_Return End // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "indirizzi_email": [ // { // "email": "string", // "categoria": "string" // } // ], // "indirizzi_email_certificate": [ // { // "email": "string", // "categoria": "string" // } // ], // "telefoni": [ // { // "fonte": "string", // "sede": "string", // "numero": "string", // "uso": "string" // } // ], // "siti_web": [ // { // "url": "string", // "tipo": "string" // } // ] // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON Move 0 To i Get ComSizeOfArray Of hoJResp "indirizzi_email" To iCount_i While (i < iCount_i) Set ComI Of hoJResp To i Get ComStringOf Of hoJResp "indirizzi_email[i].email" To sEmail Get ComStringOf Of hoJResp "indirizzi_email[i].categoria" To sCategoria Move (i + 1) To i Loop Move 0 To i Get ComSizeOfArray Of hoJResp "indirizzi_email_certificate" To iCount_i While (i < iCount_i) Set ComI Of hoJResp To i Get ComStringOf Of hoJResp "indirizzi_email_certificate[i].email" To sEmail Get ComStringOf Of hoJResp "indirizzi_email_certificate[i].categoria" To sCategoria Move (i + 1) To i Loop Move 0 To i Get ComSizeOfArray Of hoJResp "telefoni" To iCount_i While (i < iCount_i) Set ComI Of hoJResp To i Get ComStringOf Of hoJResp "telefoni[i].fonte" To sFonte Get ComStringOf Of hoJResp "telefoni[i].sede" To sSede Get ComStringOf Of hoJResp "telefoni[i].numero" To sNumero Get ComStringOf Of hoJResp "telefoni[i].uso" To sUso Move (i + 1) To i Loop Move 0 To i Get ComSizeOfArray Of hoJResp "siti_web" To iCount_i While (i < iCount_i) Set ComI Of hoJResp To i Get ComStringOf Of hoJResp "siti_web[i].url" To sUrl Get ComStringOf Of hoJResp "siti_web[i].tipo" To sTipo Move (i + 1) To i Loop End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.