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

Lianja 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

 

 

 

(Lianja) QuickBooks - Parse the JSON of a Customer Balance Detail Report

This example is to show how to parse the JSON of a particular Quickbooks report. The techniques shown here may help in parsing similar reports.

The JSON to be parsed is available at Sample Quickbooks Customer Balance Detail Report JSON

Chilkat Lianja Extension Download

Chilkat Lianja Extension

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

loHttp = createobject("CkHttp")

// Get the JSON we'll be parsing..
lcJsonStr = loHttp.QuickGetStr("https://www.chilkatsoft.com/exampleData/qb_customer_balance_detail_report_2.json")
if (loHttp.LastMethodSuccess <> .T.) then
    ? loHttp.LastErrorText
    release loHttp
    return
endif

loJson = createobject("CkJsonObject")
loJson.Load(lcJsonStr)

// As an alternative to manually writing code, use this online tool to generate parsing code from sample JSON: 
// Generate Parsing Code from JSON

// Let's parse the JSON into a CSV, and then save to a CSV file.
loCsv = createobject("CkCsv")
loCsv.HasColumnNames = .T.

// Set the column names of the CSV.
lnNumColumns = loJson.SizeOfArray("Columns.Column")
if (lnNumColumns < 0) then
    ? "Unable to get column names"
    release loHttp
    release loJson
    release loCsv
    return
endif

i = 0
do while i < lnNumColumns
    loJson.I = i
    loCsv.SetColumnName(i,loJson.StringOf("Columns.Column[i].ColTitle"))
    i = i + 1
enddo

// Let's get the rows.
// We'll ignore the Header and Summary, and just get the data.
lnRow = 0
lnNumRows = loJson.SizeOfArray("Rows.Row[0].Rows.Row")
if (lnNumRows < 0) then
    ? "Unable to get data rows"
    release loHttp
    release loJson
    release loCsv
    return
endif

do while lnRow < lnNumRows
    loJson.I = lnRow
    lnNumColumns = loJson.SizeOfArray("Rows.Row[0].Rows.Row[i].ColData")
    lnCol = 0
    do while lnCol < lnNumColumns
        loJson.J = lnCol
        loCsv.SetCell(lnRow,lnCol,loJson.StringOf("Rows.Row[0].Rows.Row[i].ColData[j].value"))
        lnCol = lnCol + 1
    enddo
    lnRow = lnRow + 1
enddo

// Show the CSV 
? loCsv.SaveToString()

// Save to a CSV file
llSuccess = loCsv.SaveFile("qa_output/customerDetailReport.csv")


release loHttp
release loJson
release loCsv

 

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