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

Xojo Plugin 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
Google Vision
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

 

 

 

(Xojo Plugin) CardConnect Get Profile

Demonstrates how to get a profile.

A GET request to the profile endpoint returns the stored data for the specified profile ID. ...

See https://developer.cardconnect.com/cardconnect-api?lang=json#get-profile-request

Chilkat Xojo Plugin Download

Xojo Plugin for Windows, Linux, Mac OS X, and ARM, ARM64

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Dim http As New Chilkat.Http
Dim success As Boolean

http.BasicAuth = True
http.Login = "API_USERNAME"
http.Password = "API_PASSWORD"

Dim url As String
url = "https://<site>.cardconnect.com:<port>/cardconnect/rest/profile/<profile ID>/<account ID>/<merchid>"
Dim responseStr As String
responseStr = http.QuickGetStr(url)
If (http.LastMethodSuccess = False) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

// A response status of 200 indicates potential success.  The JSON response body
// must be examined to determine if it was truly successful or an error.
System.DebugLog("response status code = " + Str(http.LastStatus))

Dim jsonResp As New Chilkat.JsonObject
success = jsonResp.Load(responseStr)
jsonResp.EmitCompact = False

System.DebugLog("response JSON:")
System.DebugLog(jsonResp.Emit())

// A successful response looks like this:

// {
//   "country": "US",
//   "gsacard": "N",
//   "address": "123 MAIN STREET",
//   "city": "ANYTOWN",
//   "acctid": "1",
//   "defaultacct": "Y",
//   "accttype": "VISA",
//   "token": "9441149619831111",
//   "license": "123451254",
//   "phone": "7778789999",
//   "profileid": "16392957457306633141",
//   "name": "TOM JONES",
//   "auoptout": "N",
//   "postal": "19090",
//   "expiry": "0214",
//   "region": "AK",
//   "ssnl4": "3655"
// }

// Use this online tool to generate parsing code from sample JSON: 
// Generate Parsing Code from JSON

Dim country As String
country = jsonResp.StringOf("country")
Dim gsacard As String
gsacard = jsonResp.StringOf("gsacard")
Dim address As String
address = jsonResp.StringOf("address")
Dim city As String
city = jsonResp.StringOf("city")
Dim acctid As String
acctid = jsonResp.StringOf("acctid")
Dim defaultacct As String
defaultacct = jsonResp.StringOf("defaultacct")
Dim accttype As String
accttype = jsonResp.StringOf("accttype")
Dim token As String
token = jsonResp.StringOf("token")
Dim license As String
license = jsonResp.StringOf("license")
Dim phone As String
phone = jsonResp.StringOf("phone")
Dim profileid As String
profileid = jsonResp.StringOf("profileid")
Dim name As String
name = jsonResp.StringOf("name")
Dim auoptout As String
auoptout = jsonResp.StringOf("auoptout")
Dim postal As String
postal = jsonResp.StringOf("postal")
Dim expiry As String
expiry = jsonResp.StringOf("expiry")
Dim region As String
region = jsonResp.StringOf("region")
Dim ssnl4 As String
ssnl4 = jsonResp.StringOf("ssnl4")

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.