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

Visual Basic 6.0 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

 

 

 

(Visual Basic 6.0) DVLA Vehicle Enquiry Service

Demonstrates how to make a call to the DVLA Vehicle Enquiry API to get vehicle details of a specified vehicle. It uses the vehicle registration number as input to search and provide details of the vehicle.

For more information, see https://developer-portal.driver-vehicle-licensing.api.gov.uk/apis/vehicle-enquiry-service/vehicle-enquiry-service-description.html

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

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

Dim http As New ChilkatHttp
Dim success As Long

' Implements the following CURL command:

' curl -X POST https://driver-vehicle-licensing.api.gov.uk/vehicle-enquiry/v1/vehicles \
'   -H "x-api-key: supplied API key" \
'   -H "Accept: application/json" \
'   -d '{"registrationNumber": "ABC1234"}'

' Use the following online tool to generate HTTP code from a CURL command
' Convert a cURL Command to HTTP Source Code

' Use this online tool to generate code from sample JSON:
' Generate Code to Create JSON

' The following JSON is sent in the request body.

' {
'   "registrationNumber": "ABC1234"
' }

Dim json As New ChilkatJsonObject
success = json.UpdateString("registrationNumber","ABC1234")

http.SetRequestHeader "Accept","application/json"
http.SetRequestHeader "x-api-key","supplied API key"

Dim resp As ChilkatHttpResponse
Set resp = http.PostJson3("https://driver-vehicle-licensing.api.gov.uk/vehicle-enquiry/v1/vehicles","application/json",json)
If (http.LastMethodSuccess = 0) Then
    Debug.Print http.LastErrorText
    Exit Sub
End If

Dim sbResponseBody As New ChilkatStringBuilder
success = resp.GetBodySb(sbResponseBody)
Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0

Debug.Print "Response Body:"
Debug.Print jResp.Emit()

Dim respStatusCode As Long
respStatusCode = resp.StatusCode
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
    Debug.Print "Response Header:"
    Debug.Print resp.Header
    Debug.Print "Failed."

    Exit Sub
End If

' Sample JSON response:
' (Sample code for parsing the JSON response is shown below)

' {
'   "artEndDate": "2025-02-28",
'   "co2Emissions": 135,
'   "colour": "BLUE",
'   "engineCapacity": 2494,
'   "fuelType": "PETROL",
'   "make": "ROVER",
'   "markedForExport": false,
'   "monthOfFirstRegistration": "2004-12",
'   "motStatus": "No details held by DVLA",
'   "registrationNumber": "ABC1234",
'   "revenueWeight": 1640,
'   "taxDueDate": "2007-01-01",
'   "taxStatus": "Untaxed",
'   "typeApproval": "N1",
'   "wheelplan": "NON STANDARD",
'   "yearOfManufacture": 2004,
'   "euroStatus": "EURO 6 AD",
'   "realDrivingEmissions": "1",
'   "dateOfLastV5CIssued": "2016-12-25"
' }

' Sample code for parsing the JSON response...
' Use the following online tool to generate parsing code from sample JSON:
' Generate Parsing Code from JSON

Dim artEndDate As String
artEndDate = jResp.StringOf("artEndDate")
Dim co2Emissions As Long
co2Emissions = jResp.IntOf("co2Emissions")
Dim colour As String
colour = jResp.StringOf("colour")
Dim engineCapacity As Long
engineCapacity = jResp.IntOf("engineCapacity")
Dim fuelType As String
fuelType = jResp.StringOf("fuelType")
Dim make As String
make = jResp.StringOf("make")
Dim markedForExport As Long
markedForExport = jResp.BoolOf("markedForExport")
Dim monthOfFirstRegistration As String
monthOfFirstRegistration = jResp.StringOf("monthOfFirstRegistration")
Dim motStatus As String
motStatus = jResp.StringOf("motStatus")
Dim registrationNumber As String
registrationNumber = jResp.StringOf("registrationNumber")
Dim revenueWeight As Long
revenueWeight = jResp.IntOf("revenueWeight")
Dim taxDueDate As String
taxDueDate = jResp.StringOf("taxDueDate")
Dim taxStatus As String
taxStatus = jResp.StringOf("taxStatus")
Dim typeApproval As String
typeApproval = jResp.StringOf("typeApproval")
Dim wheelplan As String
wheelplan = jResp.StringOf("wheelplan")
Dim yearOfManufacture As Long
yearOfManufacture = jResp.IntOf("yearOfManufacture")
Dim euroStatus As String
euroStatus = jResp.StringOf("euroStatus")
Dim realDrivingEmissions As String
realDrivingEmissions = jResp.StringOf("realDrivingEmissions")
Dim dateOfLastV5CIssued As String
dateOfLastV5CIssued = jResp.StringOf("dateOfLastV5CIssued")

 

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