Code snippet to loop through JSON data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim jsonObject As Object, item As Variant | |
Set jsonObject = JsonConverter.ParseJson(strResponse) | |
For Each item In jsonObject | |
'do something with json object | |
Next item |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment