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
(PowerBuilder) SMSAPI - List ContactsList Contacts For more information, see https://www.smsapi.com/docs?shell#list-contacts
integer li_rc oleobject loo_Http integer li_Success oleobject loo_SbResponseBody oleobject loo_JResp integer li_RespStatusCode oleobject loo_Date_created oleobject loo_Date_updated string ls_Id string ls_First_name string ls_Last_name string ls_Phone_number string ls_Email string ls_Gender string ls_City string ls_Country string ls_Source integer j integer li_Count_j string ls_Name string ls_Description string ls_Created_by string ls_Idx string ls_Contact_expire_after string ls_Contacts_count integer li_Size integer i integer li_Count_i // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") if li_rc < 0 then destroy loo_Http MessageBox("Error","Connecting to COM object failed") return end if // Implements the following CURL command: // curl -X GET -H "Authorization: Bearer token_api_oauth" https://api.smsapi.com/contacts?phone_number=48500000000 // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code // Adds the "Authorization: Bearer token_api_oauth" header. loo_Http.AuthToken = "token_api_oauth" loo_SbResponseBody = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder") li_Success = loo_Http.QuickGetSb("https://api.smsapi.com/contacts?phone_number=48500000000",loo_SbResponseBody) if li_Success = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_SbResponseBody return end if loo_JResp = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject") loo_JResp.LoadSb(loo_SbResponseBody) loo_JResp.EmitCompact = 0 Write-Debug "Response Body:" Write-Debug loo_JResp.Emit() li_RespStatusCode = loo_Http.LastStatus Write-Debug "Response Status Code = " + string(li_RespStatusCode) if li_RespStatusCode >= 400 then Write-Debug "Response Header:" Write-Debug loo_Http.LastHeader Write-Debug "Failed." destroy loo_Http destroy loo_SbResponseBody destroy loo_JResp return end if // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "size": 1, // "collection": [ // { // "id": "5b83ba81a788494a0469490f", // "first_name": "name", // "last_name": "surname", // "phone_number": "48500000000", // "email": "bok@smsapi.com", // "gender": "male", // "city": "City", // "country": "Poland", // "source": "source", // "date_created": "2018-08-27T10:46:57+02:00", // "date_updated": "2018-08-27T10:46:57+02:00", // "groups": [ // { // "id": "59a3ca1fa78849062837cd0c", // "name": "default", // "date_created": "2017-08-28T09:45:35+02:00", // "date_updated": "2017-08-28T09:45:35+02:00", // "description": "", // "created_by": "login", // "idx": null, // "contact_expire_after": null, // "contacts_count": null // } // ] // } // ] // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON loo_Date_created = create oleobject // Use "Chilkat_9_5_0.DtObj" for versions of Chilkat < 10.0.0 li_rc = loo_Date_created.ConnectToNewObject("Chilkat.DtObj") loo_Date_updated = create oleobject // Use "Chilkat_9_5_0.DtObj" for versions of Chilkat < 10.0.0 li_rc = loo_Date_updated.ConnectToNewObject("Chilkat.DtObj") li_Size = loo_JResp.IntOf("size") i = 0 li_Count_i = loo_JResp.SizeOfArray("collection") do while i < li_Count_i loo_JResp.I = i ls_Id = loo_JResp.StringOf("collection[i].id") ls_First_name = loo_JResp.StringOf("collection[i].first_name") ls_Last_name = loo_JResp.StringOf("collection[i].last_name") ls_Phone_number = loo_JResp.StringOf("collection[i].phone_number") ls_Email = loo_JResp.StringOf("collection[i].email") ls_Gender = loo_JResp.StringOf("collection[i].gender") ls_City = loo_JResp.StringOf("collection[i].city") ls_Country = loo_JResp.StringOf("collection[i].country") ls_Source = loo_JResp.StringOf("collection[i].source") loo_JResp.DtOf("collection[i].date_created",0,loo_Date_created) loo_JResp.DtOf("collection[i].date_updated",0,loo_Date_updated) j = 0 li_Count_j = loo_JResp.SizeOfArray("collection[i].groups") do while j < li_Count_j loo_JResp.J = j ls_Id = loo_JResp.StringOf("collection[i].groups[j].id") ls_Name = loo_JResp.StringOf("collection[i].groups[j].name") loo_JResp.DtOf("collection[i].groups[j].date_created",0,loo_Date_created) loo_JResp.DtOf("collection[i].groups[j].date_updated",0,loo_Date_updated) ls_Description = loo_JResp.StringOf("collection[i].groups[j].description") ls_Created_by = loo_JResp.StringOf("collection[i].groups[j].created_by") ls_Idx = loo_JResp.StringOf("collection[i].groups[j].idx") ls_Contact_expire_after = loo_JResp.StringOf("collection[i].groups[j].contact_expire_after") ls_Contacts_count = loo_JResp.StringOf("collection[i].groups[j].contacts_count") j = j + 1 loop i = i + 1 loop destroy loo_Http destroy loo_SbResponseBody destroy loo_JResp destroy loo_Date_created destroy loo_Date_updated |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.