Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

PowerBuilder Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(PowerBuilder) SMSAPI - List Contacts

List Contacts

For more information, see https://www.smsapi.com/docs?shell#list-contacts

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

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
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.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
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.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
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.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
li_rc = loo_Date_created.ConnectToNewObject("Chilkat_9_5_0.DtObj")

loo_Date_updated = create oleobject
li_rc = loo_Date_updated.ConnectToNewObject("Chilkat_9_5_0.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.