Help iterating a JSON webhook response

Ahh, just figured it out. I had to set theApps as an array, whcih then lets me run through each object in there:

Var theResponse as Dictionary = ParseJSON(content)

var theApps() as Variant = theResponse.Value(“theApps”)

For Each theApp As Dictionary In theApps
var theAppLabel as String = theApp.Value(“label”)
var theAppId as String = theApp.Value(“id”)
oktaAppsList.AddRow(theAppLabel, theAppId)
Next