Sample code for 30+ languages & platforms
Xojo Plugin

QuickBooks - Parse the JSON of a Customer Balance Detail Report

See more CSV Examples

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 Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

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

Dim http As New Chilkat.Http

// Get the JSON we'll be parsing..
Dim jsonStr As String
jsonStr = http.QuickGetStr("https://www.chilkatsoft.com/exampleData/qb_customer_balance_detail_report_2.json")
If (http.LastMethodSuccess <> True) Then
    System.DebugLog(http.LastErrorText)
    Return
End If

Dim json As New Chilkat.JsonObject
success = json.Load(jsonStr)

// 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.
Dim csv As New Chilkat.Csv
csv.HasColumnNames = True

// Set the column names of the CSV.
Dim numColumns As Int32
numColumns = json.SizeOfArray("Columns.Column")
If (numColumns < 0) Then
    System.DebugLog("Unable to get column names")
    Return
End If

Dim i As Int32
i = 0
While i < numColumns
    json.I = i
    success = csv.SetColumnName(i,json.StringOf("Columns.Column[i].ColTitle"))
    i = i + 1
Wend

// Let's get the rows.
// We'll ignore the Header and Summary, and just get the data.
Dim row As Int32
row = 0
Dim numRows As Int32
numRows = json.SizeOfArray("Rows.Row[0].Rows.Row")
If (numRows < 0) Then
    System.DebugLog("Unable to get data rows")
    Return
End If

While row < numRows
    json.I = row
    numColumns = json.SizeOfArray("Rows.Row[0].Rows.Row[i].ColData")
    Dim col As Int32
    col = 0
    While col < numColumns
        json.J = col
        success = csv.SetCell(row,col,json.StringOf("Rows.Row[0].Rows.Row[i].ColData[j].value"))
        col = col + 1
    Wend
    row = row + 1
Wend

// Show the CSV 
System.DebugLog(csv.SaveToString())

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